diff options
author | Glenn L McGrath <bug1@ihug.co.nz> | 2003-10-01 03:06:16 +0000 |
---|---|---|
committer | Glenn L McGrath <bug1@ihug.co.nz> | 2003-10-01 03:06:16 +0000 |
commit | aa5a602689265a4351c890efe5d8e7793e777e3c (patch) | |
tree | e253699e7d4abbccc47e387e09ef1c2c6d4716c4 /include/libbb.h | |
parent | e6ba16f830bf2524b39e3e1b7c8157808921f95d (diff) |
Patch by Rob Landley, work in progress update, fixes lots of bugs,
introduces a few others (but they are being worked on)
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 2bb5ce02d..eb6841d33 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -28,6 +28,7 @@ #include <stdarg.h> #include <sys/stat.h> #include <sys/types.h> +#include <regex.h> #include <termios.h> #include <netdb.h> @@ -468,5 +469,5 @@ extern void print_login_prompt(void); extern void vfork_daemon_rexec(int argc, char **argv, char *foreground_opt); extern void get_terminal_width_height(int fd, int *width, int *height); extern unsigned long get_ug_id(const char *s, long (*my_getxxnam)(const char *)); - +extern void xregcomp(regex_t *preg, const char *regex, int cflags); #endif /* __LIBCONFIG_H__ */ |