diff options
author | Thomas Fitzsimmons <fitzsim@redhat.com> | 2002-05-24 18:50:29 +0000 |
---|---|---|
committer | Thomas Fitzsimmons <fitzsim@redhat.com> | 2002-05-24 18:50:29 +0000 |
commit | 9a292385440df3da10f7eaeff6678ce5d4d49c60 (patch) | |
tree | 20059302cd52797389849582e786a547343b0ee0 /newlib/libc/sys/linux/Makefile.am | |
parent | 908f9b653b602b5161152d97a7213c6024b1ffb7 (diff) | |
download | cygnal-9a292385440df3da10f7eaeff6678ce5d4d49c60.tar.gz cygnal-9a292385440df3da10f7eaeff6678ce5d4d49c60.tar.bz2 cygnal-9a292385440df3da10f7eaeff6678ce5d4d49c60.zip |
* libc/sys/linux/sys/cdefs.h: Add __weak_reference macros.
* libc/sys/linux/sys/time.h: Add conversion macros.
* libc/sys/linux/sys/types.h: Add FD_ macros. Include <bits/types.h>.
* libc/sys/linux/ids.c: Add setresuid and syslog syscalls.
* libc/sys/linux/gethostname.c: New file.
* libc/sys/linux/seteuid.c: New file.
* libc/sys/linux/sysctl.c: New file.
Diffstat (limited to 'newlib/libc/sys/linux/Makefile.am')
-rw-r--r-- | newlib/libc/sys/linux/Makefile.am | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/newlib/libc/sys/linux/Makefile.am b/newlib/libc/sys/linux/Makefile.am index 592485635..be4093805 100644 --- a/newlib/libc/sys/linux/Makefile.am +++ b/newlib/libc/sys/linux/Makefile.am @@ -6,15 +6,16 @@ INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) SUBDIRS = machine \ . -SUBLIBS = $(LINUX_MACH_LIB) +SUBLIBS = \ + $(LINUX_MACH_LIB) LIB_SOURCES = \ - brk.c flockfile.c funlockfile.c getoptlong.c getreent.c ids.c \ + brk.c flockfile.c funlockfile.c gethostname.c getoptlong.c getreent.c ids.c \ inode.c io.c io64.c linux.c mmap.c \ pread.c pread64.c process.c pwrite.c pwrite64.c raise.c realpath.c \ - resource.c sched.c select.c shm_open.c shm_unlink.c signal.c \ + resource.c sched.c select.c shm_open.c shm_unlink.c seteuid.c signal.c \ siglongjmp.c socket.c sleep.c stack.c \ - sysconf.c systat.c system.c tcdrain.c termios.c time.c \ + sysconf.c sysctl.c systat.c system.c tcdrain.c termios.c time.c \ usleep.c wait.c # This will handle both /usr/src/linux-2.4/include/asm/signal.h (in Red Hat Linux 7.1) |