diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-06 09:49:47 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-06 09:49:47 +0000 |
commit | c12f53090bd41dbb87279083bc442769cb0610f0 (patch) | |
tree | 079fff1c37f04ea7f25f00cdc4360d52a69b77c5 /include | |
parent | 4e6ceb44554d265eed24c414b9a201d51d00fee2 (diff) | |
download | busybox-w32-c12f53090bd41dbb87279083bc442769cb0610f0.tar.gz busybox-w32-c12f53090bd41dbb87279083bc442769cb0610f0.tar.bz2 busybox-w32-c12f53090bd41dbb87279083bc442769cb0610f0.zip |
dnsd fix; option_mask32 added. dnsd needs more love.
Diffstat (limited to 'include')
-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, |