2003-05-27 Jeff Johnston <jjohnstn@redhat.com>

* libnosys/Makefile.in: Add errno.o.
        * libnosys/errno.c: New file to supply errno definition if
        one not provided yet.
This commit is contained in:
Jeff Johnston 2003-05-27 19:57:58 +00:00
parent a946fb037d
commit 71c7884720
3 changed files with 11 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2003-05-27 Jeff Johnston <jjohnstn@redhat.com>
* libnosys/Makefile.in: Add errno.o.
* libnosys/errno.c: New file to supply errno definition if
one not provided yet.
2003-05-26 Eric Christopher <echristo@redhat.com>
* mips/crt0.S: Remove stackbase variable set.

View File

@ -64,8 +64,8 @@ OBJCOPY = `if [ -f ${objroot}/../binutils/objcopy ] ; \
else t='$(program_transform_name)'; echo objcopy | sed -e $$t ; fi`
# object files needed
OBJS = close.o environ.o execve.o fork.o fstat.o getpid.o gettod.o isatty.o \
kill.o link.o lseek.o open.o read.o sbrk.o stat.o \
OBJS = close.o environ.o errno.o execve.o fork.o fstat.o getpid.o gettod.o \
isatty.o kill.o link.o lseek.o open.o read.o sbrk.o stat.o \
times.o unlink.o wait.o write.o
# Object files specific to particular targets.

View File

@ -0,0 +1,3 @@
/* Supply a definition of errno if one not already provided. */
int errno;