OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [rtems-20020807/] [cpukit/] [posix/] [src/] [execl.c] - Rev 1779

Go to most recent revision | Compare with Previous | Blame | View Log

/* 
 *  execl() - POSIX 1003.1b 3.1.2
 *
 *  execl.c,v 1.2 2001/01/24 14:17:28 joel Exp
 */
 
#if HAVE_CONFIG_H
#include "config.h"
#endif
 
#include <errno.h>
 
int execl(
  const char *path,
  const char *arg,
  ...
)
{
  errno = ENOSYS;
  return -1;
}
 

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.