aboutsummaryrefslogtreecommitdiff
path: root/util-linux
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-01-27 08:24:39 +0000
committerEric Andersen <andersen@codepoet.org>2001-01-27 08:24:39 +0000
commited3ef50c233ffb1b50ea0e7382a8e60b86491009 (patch)
treeecb05ce51890c2cf84ad036543a972ac812320c3 /util-linux
parentab050f5522e843bf08994685134adaaac7ffd392 (diff)
downloadbusybox-w32-ed3ef50c233ffb1b50ea0e7382a8e60b86491009.tar.gz
busybox-w32-ed3ef50c233ffb1b50ea0e7382a8e60b86491009.tar.bz2
busybox-w32-ed3ef50c233ffb1b50ea0e7382a8e60b86491009.zip
Fix header file usage -- there were many unnecessary header files included in
busybox.h which slowed compiles. I left only what was needed and then fixed up all the apps to include their own header files. I also fixed naming for pwd.h and grp.h functions. Tested to compile and run with libc5, glibc, and uClibc. -Erik
Diffstat (limited to 'util-linux')
-rw-r--r--util-linux/dmesg.c4
-rw-r--r--util-linux/fbset.c1
-rw-r--r--util-linux/fdflush.c1
-rw-r--r--util-linux/freeramdisk.c1
-rw-r--r--util-linux/more.c1
-rw-r--r--util-linux/rdate.c2
-rw-r--r--util-linux/swaponoff.c5
-rw-r--r--util-linux/umount.c2
8 files changed, 15 insertions, 2 deletions
diff --git a/util-linux/dmesg.c b/util-linux/dmesg.c
index c220d9018..c21f84c9a 100644
--- a/util-linux/dmesg.c
+++ b/util-linux/dmesg.c
@@ -18,9 +18,11 @@
18#include "busybox.h" 18#include "busybox.h"
19#include <stdio.h> 19#include <stdio.h>
20#include <stdlib.h> 20#include <stdlib.h>
21#include <getopt.h>
21 22
22#if __GNU_LIBRARY__ < 5 23#if __GNU_LIBRARY__ < 5
23 24#include <sys/syscall.h>
25#include <linux/unistd.h>
24#ifndef __alpha__ 26#ifndef __alpha__
25# define __NR_klogctl __NR_syslog 27# define __NR_klogctl __NR_syslog
26static inline _syscall3(int, klogctl, int, type, char *, b, int, len); 28static inline _syscall3(int, klogctl, int, type, char *, b, int, len);
diff --git a/util-linux/fbset.c b/util-linux/fbset.c
index 845be8442..637896bed 100644
--- a/util-linux/fbset.c
+++ b/util-linux/fbset.c
@@ -31,6 +31,7 @@
31#include <fcntl.h> 31#include <fcntl.h>
32#include <errno.h> 32#include <errno.h>
33#include <ctype.h> 33#include <ctype.h>
34#include <string.h>
34#include <sys/ioctl.h> 35#include <sys/ioctl.h>
35 36
36#define DEFAULTFBDEV "/dev/fb0" 37#define DEFAULTFBDEV "/dev/fb0"
diff --git a/util-linux/fdflush.c b/util-linux/fdflush.c
index 5eb93ddd7..fcf8ddd28 100644
--- a/util-linux/fdflush.c
+++ b/util-linux/fdflush.c
@@ -25,6 +25,7 @@
25#include <stdio.h> 25#include <stdio.h>
26#include <sys/ioctl.h> 26#include <sys/ioctl.h>
27#include <fcntl.h> 27#include <fcntl.h>
28#include <stdlib.h>
28 29
29/* From <linux/fd.h> */ 30/* From <linux/fd.h> */
30#define FDFLUSH _IO(2,0x4b) 31#define FDFLUSH _IO(2,0x4b)
diff --git a/util-linux/freeramdisk.c b/util-linux/freeramdisk.c
index a2b17c673..8f90f40b5 100644
--- a/util-linux/freeramdisk.c
+++ b/util-linux/freeramdisk.c
@@ -27,6 +27,7 @@
27#include <fcntl.h> 27#include <fcntl.h>
28#include <sys/ioctl.h> 28#include <sys/ioctl.h>
29#include <errno.h> 29#include <errno.h>
30#include <stdlib.h>
30#include "busybox.h" 31#include "busybox.h"
31 32
32 33
diff --git a/util-linux/more.c b/util-linux/more.c
index 03cb3bc2b..c4c74fe4a 100644
--- a/util-linux/more.c
+++ b/util-linux/more.c
@@ -29,6 +29,7 @@
29#include <stdio.h> 29#include <stdio.h>
30#include <fcntl.h> 30#include <fcntl.h>
31#include <signal.h> 31#include <signal.h>
32#include <stdlib.h>
32#include <sys/ioctl.h> 33#include <sys/ioctl.h>
33#define BB_DECLARE_EXTERN 34#define BB_DECLARE_EXTERN
34#define bb_need_help 35#define bb_need_help
diff --git a/util-linux/rdate.c b/util-linux/rdate.c
index 954982ae9..0ad339be8 100644
--- a/util-linux/rdate.c
+++ b/util-linux/rdate.c
@@ -31,6 +31,8 @@
31#include <netdb.h> 31#include <netdb.h>
32#include <stdio.h> 32#include <stdio.h>
33#include <getopt.h> 33#include <getopt.h>
34#include <stdlib.h>
35#include <unistd.h>
34 36
35 37
36static const int RFC_868_BIAS = 2208988800UL; 38static const int RFC_868_BIAS = 2208988800UL;
diff --git a/util-linux/swaponoff.c b/util-linux/swaponoff.c
index eda15100b..d792c708d 100644
--- a/util-linux/swaponoff.c
+++ b/util-linux/swaponoff.c
@@ -24,10 +24,13 @@
24 24
25#include "busybox.h" 25#include "busybox.h"
26#include <stdio.h> 26#include <stdio.h>
27#include <sys/mount.h>
28#include <mntent.h> 27#include <mntent.h>
29#include <dirent.h> 28#include <dirent.h>
30#include <errno.h> 29#include <errno.h>
30#include <stdlib.h>
31#include <sys/mount.h>
32#include <sys/syscall.h>
33#include <linux/unistd.h>
31 34
32_syscall2(int, swapon, const char *, path, int, flags); 35_syscall2(int, swapon, const char *, path, int, flags);
33_syscall1(int, swapoff, const char *, path); 36_syscall1(int, swapoff, const char *, path);
diff --git a/util-linux/umount.c b/util-linux/umount.c
index 2e2d95de4..dfd58259d 100644
--- a/util-linux/umount.c
+++ b/util-linux/umount.c
@@ -26,6 +26,8 @@
26#include <stdio.h> 26#include <stdio.h>
27#include <mntent.h> 27#include <mntent.h>
28#include <errno.h> 28#include <errno.h>
29#include <string.h>
30#include <stdlib.h>
29 31
30 32
31static const int MNT_FORCE = 1; 33static const int MNT_FORCE = 1;