]> mj.ucw.cz Git - eval.git/blob - lib/regex/regex-sh.h
Polished configuration scripts.
[eval.git] / lib / regex / regex-sh.h
1 /*
2  *  Regular Expression Functions from glibc 2.3.2
3  *  (renamed to sh_* to avoid clashes with the system libraries)
4  */
5
6 #ifndef _UCW_REGEX_H
7 #define _UCW_REGEX_H
8
9 #define regfree sh_regfree
10 #define regexec sh_regexec
11 #define regcomp sh_regcomp
12 #define regerror sh_regerror
13 #define re_set_registers sh_re_set_registers
14 #define re_match_2 sh_re_match2
15 #define re_match sh_re_match
16 #define re_search sh_re_search
17 #define re_compile_pattern sh_re_compile_pattern
18 #define re_set_syntax sh_re_set_syntax
19 #define re_search_2 sh_re_search_2
20 #define re_compile_fastmap sh_re_compile_fastmap
21
22 #include "lib/regex/regex.h"
23
24 #endif