diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-06-19 18:14:20 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-06-19 18:14:20 +0000 |
commit | 3cdad2b904444f134720508eacc22820986b7bff (patch) | |
tree | ac3f2319edbd5435588e2399386a2c63f3fdba4a /init.c | |
parent | 6855cb77d59b35c3ca78af271f0a9438b11835d2 (diff) | |
download | busybox-w32-3cdad2b904444f134720508eacc22820986b7bff.tar.gz busybox-w32-3cdad2b904444f134720508eacc22820986b7bff.tar.bz2 busybox-w32-3cdad2b904444f134720508eacc22820986b7bff.zip |
Make syslogd.c, init.c, and update.c compile error/warning free under both libc5 and libc6.
-Erik
git-svn-id: svn://busybox.net/trunk/busybox@664 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'init.c')
-rw-r--r-- | init.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -93,7 +93,7 @@ | |||
93 | #if defined(__GLIBC__) | 93 | #if defined(__GLIBC__) |
94 | #include <sys/kdaemon.h> | 94 | #include <sys/kdaemon.h> |
95 | #else | 95 | #else |
96 | _syscall2(int, bdflush, int, func, int, data); | 96 | static _syscall2(int, bdflush, int, func, int, data); |
97 | #endif /* __GLIBC__ */ | 97 | #endif /* __GLIBC__ */ |
98 | 98 | ||
99 | 99 | ||