diff options
author | Roland McGrath <roland@gnu.org> | 1996-01-29 19:30:15 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1996-01-29 19:30:15 +0000 |
commit | b86199fb609d691b0a12761621760aa52562e195 (patch) | |
tree | 1516836553fe8f661a017a509b36f3604d82cd36 /sysdeps | |
parent | 429ed67ba10dccfa6472bf803473fd20c0203309 (diff) | |
download | glibc-b86199fb609d691b0a12761621760aa52562e195.tar.gz glibc-b86199fb609d691b0a12761621760aa52562e195.tar.xz glibc-b86199fb609d691b0a12761621760aa52562e195.zip |
Set $inhibit_glue.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/posix/getcwd.c | 4 | ||||
-rw-r--r-- | sysdeps/unix/syscalls.list | 1 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/configure | 4 | ||||
-rw-r--r-- | sysdeps/unix/sysv/syscalls.list | 1 |
4 files changed, 7 insertions, 3 deletions
diff --git a/sysdeps/posix/getcwd.c b/sysdeps/posix/getcwd.c index 0724ef59a2..4bebece975 100644 --- a/sysdeps/posix/getcwd.c +++ b/sysdeps/posix/getcwd.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1992, 1993, 1994, 1995 Free Software Foundation, Inc. +/* Copyright (C) 1991, 92, 93, 94, 95, 96 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -167,7 +167,7 @@ extern char *alloca (); #endif #endif -#ifndef STDC_HEADERS +#if !defined (STDC_HEADERS) && !defined (__GNU_LIBRARY__) #undef size_t #define size_t unsigned int #endif diff --git a/sysdeps/unix/syscalls.list b/sysdeps/unix/syscalls.list index 7fba017fc0..add4a1f0de 100644 --- a/sysdeps/unix/syscalls.list +++ b/sysdeps/unix/syscalls.list @@ -49,6 +49,7 @@ sys_fstat fxstat fstat 2 __syscall_fstat sys_mknod xmknod mknod 3 __syscall_mknod sys_stat xstat stat 2 __syscall_stat umask - umask 1 __umask umask +uname - uname 1 uname unlink - unlink 1 __unlink unlink write - write 3 __write write writev - writev 3 writev diff --git a/sysdeps/unix/sysv/linux/configure b/sysdeps/unix/sysv/linux/configure index 63693e088e..62d8538003 100644 --- a/sysdeps/unix/sysv/linux/configure +++ b/sysdeps/unix/sysv/linux/configure @@ -1,3 +1,7 @@ # On Linux, the default is to use libio instead of stdio. test $stdio = default && stdio=libio + +# Don't bother trying to generate any glue code to be compatible with the +# existing system library, because we are the only system library. +inhibit_glue=yes diff --git a/sysdeps/unix/sysv/syscalls.list b/sysdeps/unix/sysv/syscalls.list index ee40474d28..b7fa490c95 100644 --- a/sysdeps/unix/sysv/syscalls.list +++ b/sysdeps/unix/sysv/syscalls.list @@ -11,5 +11,4 @@ stime - stime 1 stime time - time 1 time times - times 1 __times times ulimit - ulimit 2 ulimit -uname - uname 1 uname utime - utime 2 utime |