diff options
author | Rob Landley <rob@landley.net> | 2006-08-03 17:58:17 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-08-03 17:58:17 +0000 |
commit | 86b4d64aa3f5ca4c2824a8948541b0e18dfe0a74 (patch) | |
tree | b3002e01131f99581c1be3462b96b2f2c40408f4 /include | |
parent | 7478804b783619762a52a740037126ef8711acc2 (diff) | |
download | busybox-w32-86b4d64aa3f5ca4c2824a8948541b0e18dfe0a74.tar.gz busybox-w32-86b4d64aa3f5ca4c2824a8948541b0e18dfe0a74.tar.bz2 busybox-w32-86b4d64aa3f5ca4c2824a8948541b0e18dfe0a74.zip |
These should have been part of 15767 too.
Diffstat (limited to 'include')
-rw-r--r-- | include/xregex.h | 22 |
1 files changed, 4 insertions, 18 deletions
diff --git a/include/xregex.h b/include/xregex.h index 394ce3bae..188e90ff6 100644 --- a/include/xregex.h +++ b/include/xregex.h | |||
@@ -1,30 +1,16 @@ | |||
1 | /* vi: set sw=4 ts=4: */ | 1 | /* vi: set sw=4 ts=4: */ |
2 | /* | 2 | /* |
3 | * Busybox xregcomp utility routine | 3 | * Busybox xregcomp utility routine. This isn't in libbb.h because the |
4 | * | 4 | * C library we're linking against may not support regex.h. |
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify | ||
7 | * it under the terms of the GNU General Public License as published by | ||
8 | * the Free Software Foundation; either version 2 of the License, or | ||
9 | * (at your option) any later version. | ||
10 | * | ||
11 | * This program is distributed in the hope that it will be useful, | ||
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
14 | * General Public License for more details. | ||
15 | * | ||
16 | * You should have received a copy of the GNU General Public License | ||
17 | * along with this program; if not, write to the Free Software | ||
18 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
19 | * | 5 | * |
20 | * Based in part on code from sash, Copyright (c) 1999 by David I. Bell | 6 | * Based in part on code from sash, Copyright (c) 1999 by David I. Bell |
21 | * Permission has been granted to redistribute this code under the GPL. | 7 | * Permission has been granted to redistribute this code under the GPL. |
22 | * | 8 | * |
9 | * Licensed under GPLv2 or later, see file License in this tarball for details. | ||
23 | */ | 10 | */ |
24 | #ifndef __BB_REGEX__ | 11 | #ifndef __BB_REGEX__ |
25 | #define __BB_REGEX__ | 12 | #define __BB_REGEX__ |
26 | 13 | ||
27 | #include <sys/types.h> | ||
28 | #include <regex.h> | 14 | #include <regex.h> |
29 | extern void xregcomp(regex_t *preg, const char *regex, int cflags); | 15 | extern void xregcomp(regex_t *preg, const char *regex, int cflags); |
30 | 16 | ||