diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-10-06 09:49:47 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-10-06 09:49:47 +0000 |
commit | 0c25765dadfc6f92e0c90f146df6b018025d4c62 (patch) | |
tree | 17df4dd427d85319857d9b7882585b3db9ad6994 /include/libbb.h | |
parent | c51bc4078de3529829b4ee0c20ed490af680c40d (diff) | |
download | busybox-w32-0c25765dadfc6f92e0c90f146df6b018025d4c62.tar.gz busybox-w32-0c25765dadfc6f92e0c90f146df6b018025d4c62.tar.bz2 busybox-w32-0c25765dadfc6f92e0c90f146df6b018025d4c62.zip |
dnsd fix; option_mask32 added. dnsd needs more love.
git-svn-id: svn://busybox.net/trunk/busybox@16316 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'include/libbb.h')
-rw-r--r-- | include/libbb.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h index adfeca590..84c8af4b6 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -206,9 +206,10 @@ extern void xsetgid(gid_t gid); | |||
206 | extern void xsetuid(uid_t uid); | 206 | extern void xsetuid(uid_t uid); |
207 | extern off_t fdlength(int fd); | 207 | extern off_t fdlength(int fd); |
208 | 208 | ||
209 | #define BB_GETOPT_ERROR 0x80000000UL | 209 | enum { BB_GETOPT_ERROR = 0x80000000 }; |
210 | extern const char *opt_complementary; | 210 | extern const char *opt_complementary; |
211 | extern const struct option *applet_long_options; | 211 | extern const struct option *applet_long_options; |
212 | extern uint32_t option_mask32; | ||
212 | extern uint32_t getopt32(int argc, char **argv, const char *applet_opts, ...); | 213 | extern uint32_t getopt32(int argc, char **argv, const char *applet_opts, ...); |
213 | 214 | ||
214 | extern int bb_vfprintf(FILE * __restrict stream, const char * __restrict format, | 215 | extern int bb_vfprintf(FILE * __restrict stream, const char * __restrict format, |