From 09e967c2d732783b2579e4e120cd9b608404cb00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gwenol=C3=A9=20Beauchesne?= Date: Wed, 4 Jun 2003 18:31:57 +0000 Subject: Merge from R9_0-AMD64, most notably: - AMD64 support to insmod-busybox, minilibc, et al. - Sync with insmod-modutils 2.4.19 something but everyone should use dietlibc nowadays - Factor out compilation and prefix with $(DIET) for dietlibc builds - 64-bit & varargs fixes --- mdk-stage1/dietlibc/include/regex.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'mdk-stage1/dietlibc/include/regex.h') diff --git a/mdk-stage1/dietlibc/include/regex.h b/mdk-stage1/dietlibc/include/regex.h index be609d9db..abc9ab57b 100644 --- a/mdk-stage1/dietlibc/include/regex.h +++ b/mdk-stage1/dietlibc/include/regex.h @@ -38,6 +38,7 @@ typedef struct __regex_t { int brackets,cflags; regmatch_t *l; } regex_t; +#define re_nsub r.pieces int regcomp(regex_t *preg, const char *regex, int cflags) __THROW; int regexec(const regex_t *preg, const char *string, size_t nmatch, regmatch_t pmatch[], int eflags) __THROW; @@ -61,7 +62,10 @@ enum __regex_errors { REG_BADPAT, /* Invalid use of pattern operators such as group or list. */ REG_ESIZE, /* Compiled regular expression requires a pattern buffer larger than 64Kb. This is not defined by POSIX.2. */ - REG_ESPACE, /* regcomp ran out of space */ + REG_ESPACE /* regcomp ran out of space */ }; +char * re_comp(char * regex); +int re_exec(char * string); + #endif -- cgit v1.2.1