]> git.sur5r.net Git - openldap/blob - include/ac/regex.h
Modified NT changes to work under UNIX.
[openldap] / include / ac / regex.h
1 /*
2  * Generic Regex
3  */
4 #ifndef _AC_REGEX_H_
5 #define _AC_REGEX_H_
6
7 #ifdef HAVE_SYS_TYPES_H
8 #include <sys/types.h>
9 #endif
10
11 #ifdef HAVE_REGEX_H
12         /* have regex.h, assume it's POSIX compliant */
13 #       include <regex.h>
14 #else
15         /* no regex.h, use compatibility library */
16 #       include <regex-compat.h>
17 #endif /* ! regex.h */
18
19 #endif /* _AC_REGEX_H_ */