diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2010-06-11 19:22:42 +0200 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2010-06-11 19:22:42 +0200 |
commit | 13433395f2fd808006cd07b05b79cae193c6ecb9 (patch) | |
tree | c0b8784782610e4e15c256f70008943ae7d75a6a /libpthread/nptl/sysdeps/unix | |
parent | 8642c931a3ef2e944871b32b293df872eb7a1ae0 (diff) |
silence some warnings about missing prototypes
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libpthread/nptl/sysdeps/unix')
-rw-r--r-- | libpthread/nptl/sysdeps/unix/sysv/linux/fork.c | 2 | ||||
-rw-r--r-- | libpthread/nptl/sysdeps/unix/sysv/linux/getpid.c | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/libpthread/nptl/sysdeps/unix/sysv/linux/fork.c b/libpthread/nptl/sysdeps/unix/sysv/linux/fork.c index 2d4cae224..6ad9053b7 100644 --- a/libpthread/nptl/sysdeps/unix/sysv/linux/fork.c +++ b/libpthread/nptl/sysdeps/unix/sysv/linux/fork.c @@ -58,7 +58,7 @@ fresetlockfiles (void) #endif } - +extern __typeof(fork) __libc_fork; pid_t __libc_fork (void) { diff --git a/libpthread/nptl/sysdeps/unix/sysv/linux/getpid.c b/libpthread/nptl/sysdeps/unix/sysv/linux/getpid.c index 96e2bf439..d4de3cd9e 100644 --- a/libpthread/nptl/sysdeps/unix/sysv/linux/getpid.c +++ b/libpthread/nptl/sysdeps/unix/sysv/linux/getpid.c @@ -46,6 +46,7 @@ really_getpid (pid_t oldval) } #endif +extern __typeof(getpid) __getpid; pid_t __getpid (void) { |