diff options
author | Mark Whitley <markw@lineo.com> | 2001-04-25 18:06:21 +0000 |
---|---|---|
committer | Mark Whitley <markw@lineo.com> | 2001-04-25 18:06:21 +0000 |
commit | c29c44c00e8f65d96bffa37a521b4d4be1f913ce (patch) | |
tree | 3621ec8b67d133606ac7f47c1afe3247383d2c94 /include | |
parent | 4f4bcfcd1a3b57317f601eeca5c61ed8916468f6 (diff) | |
download | busybox-w32-c29c44c00e8f65d96bffa37a521b4d4be1f913ce.tar.gz busybox-w32-c29c44c00e8f65d96bffa37a521b4d4be1f913ce.tar.bz2 busybox-w32-c29c44c00e8f65d96bffa37a521b4d4be1f913ce.zip |
libbb.h now includes ../busybox.h. This way, files in libbb that have
BB_[FEATURE] #defines won't be ignored. Credit to Magnus Damm for spotting
this.
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h index cbc1436fc..2937b4863 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -35,6 +35,10 @@ | |||
35 | 35 | ||
36 | #include <features.h> | 36 | #include <features.h> |
37 | 37 | ||
38 | #ifndef _BB_INTERNAL_H_ | ||
39 | #include "../busybox.h" | ||
40 | #endif | ||
41 | |||
38 | #if __GNU_LIBRARY__ < 5 | 42 | #if __GNU_LIBRARY__ < 5 |
39 | /* libc5 doesn't define socklen_t */ | 43 | /* libc5 doesn't define socklen_t */ |
40 | typedef unsigned int socklen_t; | 44 | typedef unsigned int socklen_t; |