]> git.sur5r.net Git - openldap/blob - include/ac/regex.h
VC++ Port: round 1
[openldap] / include / ac / regex.h
1 /*
2  * Generic Regex
3  */
4 #ifndef _AC_REGEX_H_
5 #define _AC_REGEX_H_
6
7 #ifdef HAVE_REGEX_H
8         /* have regex.h, assume it's POSIX compliant */
9 #       include <regex.h>
10 #else
11         /* no regex.h, use compatibility library */
12 #       include <regex-compat.h>
13 #endif /* ! regex.h */
14
15 #endif /* _AC_REGEX_H_ */