aboutsummaryrefslogtreecommitdiff
path: root/include/libbb.h
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-10-06 09:49:47 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-10-06 09:49:47 +0000
commit0c25765dadfc6f92e0c90f146df6b018025d4c62 (patch)
tree17df4dd427d85319857d9b7882585b3db9ad6994 /include/libbb.h
parentc51bc4078de3529829b4ee0c20ed490af680c40d (diff)
downloadbusybox-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.h3
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);
206extern void xsetuid(uid_t uid); 206extern void xsetuid(uid_t uid);
207extern off_t fdlength(int fd); 207extern off_t fdlength(int fd);
208 208
209#define BB_GETOPT_ERROR 0x80000000UL 209enum { BB_GETOPT_ERROR = 0x80000000 };
210extern const char *opt_complementary; 210extern const char *opt_complementary;
211extern const struct option *applet_long_options; 211extern const struct option *applet_long_options;
212extern uint32_t option_mask32;
212extern uint32_t getopt32(int argc, char **argv, const char *applet_opts, ...); 213extern uint32_t getopt32(int argc, char **argv, const char *applet_opts, ...);
213 214
214extern int bb_vfprintf(FILE * __restrict stream, const char * __restrict format, 215extern int bb_vfprintf(FILE * __restrict stream, const char * __restrict format,