Fix the pwd and group functions. The bb_ stuff was a leftover from
[oweals/busybox.git] / dmesg.c
diff --git a/dmesg.c b/dmesg.c
index c220d90184f9e76d06a3401d1fd2e0dfde67ab10..c21f84c9a02cb6e9bd8347bde2c6bb4c7ccb0d1c 100644 (file)
--- a/dmesg.c
+++ b/dmesg.c
 #include "busybox.h"
 #include <stdio.h>
 #include <stdlib.h>
+#include <getopt.h>
 
 #if __GNU_LIBRARY__ < 5
-
+#include <sys/syscall.h>
+#include <linux/unistd.h>
 #ifndef __alpha__
 # define __NR_klogctl __NR_syslog
 static inline _syscall3(int, klogctl, int, type, char *, b, int, len);