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 /libc/sysdeps/linux/common/pause.c | |
parent | 8642c931a3ef2e944871b32b293df872eb7a1ae0 (diff) |
silence some warnings about missing prototypes
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libc/sysdeps/linux/common/pause.c')
-rw-r--r-- | libc/sysdeps/linux/common/pause.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/common/pause.c b/libc/sysdeps/linux/common/pause.c index 132ffa856..33eb409c6 100644 --- a/libc/sysdeps/linux/common/pause.c +++ b/libc/sysdeps/linux/common/pause.c @@ -19,6 +19,7 @@ /* Suspend the process until a signal arrives. This always returns -1 and sets errno to EINTR. */ +extern __typeof(pause) __libc_pause; int __libc_pause (void) { |