diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2002-04-26 23:21:29 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2002-04-26 23:21:29 +0000 |
commit | 557856bdd9b9d8f8a4d767034df58831a96c1a93 (patch) | |
tree | 7f97754917604b4c4675e3b602145eed38e102ce /newlib/libc/sys/linux/Makefile.in | |
parent | 7b2b12d51bd19095edd58a7fd98ed5128e64177f (diff) | |
download | cygnal-557856bdd9b9d8f8a4d767034df58831a96c1a93.tar.gz cygnal-557856bdd9b9d8f8a4d767034df58831a96c1a93.tar.bz2 cygnal-557856bdd9b9d8f8a4d767034df58831a96c1a93.zip |
2002-04-26 Jeff Johnston <jjohnstn@redhat.com>
* libc/sys/linux/Makefile.am: Add io64.c.
* libc/sys/linux/Makefile.in: Regenerated.
* libc/sys/linux/io.c(mkfifo, fsync, fdatasync): Added syscalls.
* libc/sys/linux/signal.c (sigwaitinfo, sigtimedwait): Ditto.
* libc/sys/linux/io64.c: New file.
Diffstat (limited to 'newlib/libc/sys/linux/Makefile.in')
-rw-r--r-- | newlib/libc/sys/linux/Makefile.in | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/newlib/libc/sys/linux/Makefile.in b/newlib/libc/sys/linux/Makefile.in index f13defa33..e4f840bc6 100644 --- a/newlib/libc/sys/linux/Makefile.in +++ b/newlib/libc/sys/linux/Makefile.in @@ -97,7 +97,7 @@ SUBDIRS = machine . SUBLIBS = $(LINUX_MACH_LIB) LIB_SOURCES = \ - brk.c getoptlong.c ids.c inode.c io.c linux.c mmap.c \ + brk.c getoptlong.c ids.c inode.c io.c io64.c linux.c mmap.c \ process.c realpath.c sched.c \ select.c signal.c siglongjmp.c socket.c sleep.c stack.c \ sysconf.c systat.c termios.c time.c \ @@ -132,15 +132,15 @@ DEFS = @DEFS@ -I. -I$(srcdir) CPPFLAGS = @CPPFLAGS@ LIBS = @LIBS@ @USE_LIBTOOL_FALSE@lib_a_OBJECTS = brk.o getoptlong.o ids.o inode.o \ -@USE_LIBTOOL_FALSE@io.o linux.o mmap.o process.o realpath.o sched.o \ -@USE_LIBTOOL_FALSE@select.o signal.o siglongjmp.o socket.o sleep.o \ -@USE_LIBTOOL_FALSE@stack.o sysconf.o systat.o termios.o time.o usleep.o \ -@USE_LIBTOOL_FALSE@wait.o +@USE_LIBTOOL_FALSE@io.o io64.o linux.o mmap.o process.o realpath.o \ +@USE_LIBTOOL_FALSE@sched.o select.o signal.o siglongjmp.o socket.o \ +@USE_LIBTOOL_FALSE@sleep.o stack.o sysconf.o systat.o termios.o time.o \ +@USE_LIBTOOL_FALSE@usleep.o wait.o LTLIBRARIES = $(noinst_LTLIBRARIES) @USE_LIBTOOL_TRUE@liblinux_la_DEPENDENCIES = @USE_LIBTOOL_TRUE@liblinux_la_OBJECTS = brk.lo getoptlong.lo ids.lo \ -@USE_LIBTOOL_TRUE@inode.lo io.lo linux.lo mmap.lo process.lo \ +@USE_LIBTOOL_TRUE@inode.lo io.lo io64.lo linux.lo mmap.lo process.lo \ @USE_LIBTOOL_TRUE@realpath.lo sched.lo select.lo signal.lo \ @USE_LIBTOOL_TRUE@siglongjmp.lo socket.lo sleep.lo stack.lo sysconf.lo \ @USE_LIBTOOL_TRUE@systat.lo termios.lo time.lo usleep.lo wait.lo |