Another update from Larry:
[oweals/busybox.git] / update.c
index b282b9e18aa9659dfb4a05654c44b01d6b339286..a6550b05cab853c8ec7ccd8e136c661dc764b265 100644 (file)
--- a/update.c
+++ b/update.c
 #include <unistd.h> /* for getopt() */
 #include <stdlib.h>
 
-
-#if defined(__GLIBC__)
-#include <sys/kdaemon.h>
+#if __GNU_LIBRARY__ > 5
+       #include <sys/kdaemon.h>
 #else
-#include <sys/syscall.h>
-#include <linux/unistd.h>
-static _syscall2(int, bdflush, int, func, int, data);
-#endif /* __GLIBC__ */
+       extern int bdflush (int func, long int data);
+#endif
+
 #include "busybox.h"
 
 static unsigned int sync_duration = 30;