Now compiles.

This commit is contained in:
Joel Sherrill
1998-09-25 13:28:28 +00:00
parent 1ee9a1a715
commit b965227fa1
5 changed files with 9 additions and 1 deletions

View File

@@ -11,8 +11,12 @@ PROJECT_ROOT = @PROJECT_ROOT@
# following are semi-implemented and untested
# C_PIECES=aio cancel devctl intr mqueue ptimer semaphore time utsname
ENOSYS_C_PIECES=\
execl execle execlp execv execve execvp fork \
pthreadatfork
C_PIECES= adasupp cond getpid key mutex pthread psignal sched time \
types unistd
types unistd $(ENOSYS_C_PIECES)
C_FILES=$(C_PIECES:%=%.c)
C_O_FILES=$(C_PIECES:%=${ARCH}/%.o)

View File

@@ -10,6 +10,7 @@ int execlp(
const char *file,
const char *arg,
...
)
{
errno = ENOSYS;
return -1;

View File

@@ -10,6 +10,7 @@ int execv(
const char *file,
char *const argv[],
...
)
{
errno = ENOSYS;
return -1;