diff options
Diffstat (limited to 'networking/ifupdown.c')
-rw-r--r-- | networking/ifupdown.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/networking/ifupdown.c b/networking/ifupdown.c index 2c6db926f..399ff6b5d 100644 --- a/networking/ifupdown.c +++ b/networking/ifupdown.c | |||
@@ -44,6 +44,7 @@ | |||
44 | //usage: "\n -f Force de/configuration" | 44 | //usage: "\n -f Force de/configuration" |
45 | 45 | ||
46 | #include "libbb.h" | 46 | #include "libbb.h" |
47 | #include "common_bufsiz.h" | ||
47 | /* After libbb.h, since it needs sys/types.h on some systems */ | 48 | /* After libbb.h, since it needs sys/types.h on some systems */ |
48 | #include <sys/utsname.h> | 49 | #include <sys/utsname.h> |
49 | #include <fnmatch.h> | 50 | #include <fnmatch.h> |
@@ -129,7 +130,7 @@ struct globals { | |||
129 | const char *startup_PATH; | 130 | const char *startup_PATH; |
130 | char *shell; | 131 | char *shell; |
131 | } FIX_ALIASING; | 132 | } FIX_ALIASING; |
132 | #define G (*(struct globals*)&bb_common_bufsiz1) | 133 | #define G (*(struct globals*)bb_common_bufsiz1) |
133 | #define INIT_G() do { } while (0) | 134 | #define INIT_G() do { } while (0) |
134 | 135 | ||
135 | 136 | ||