diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-01-29 15:32:48 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-01-29 15:32:48 +0000 |
commit | 28db421a4b232068a10a4703e21af1a51a638847 (patch) | |
tree | a1f388ce1aac3d2f426a96ac36e15c050fc96d89 /libc/sysdeps/linux/common/ulimit.c | |
parent | 46dc42acff5308eb62a2b18df9bc792c8cf8f7ee (diff) |
create local prototypes to shutup warnings
Diffstat (limited to 'libc/sysdeps/linux/common/ulimit.c')
-rw-r--r-- | libc/sysdeps/linux/common/ulimit.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/common/ulimit.c b/libc/sysdeps/linux/common/ulimit.c index 75d7a8237..6f0278f60 100644 --- a/libc/sysdeps/linux/common/ulimit.c +++ b/libc/sysdeps/linux/common/ulimit.c @@ -9,7 +9,8 @@ #ifdef __NR_ulimit -_syscall2(long, ulimit, int, cmd, int, arg); +extern long int ulimit(int cmd, long arg); +_syscall2(long, ulimit, int, cmd, long, arg); #else |