openldap/include/ac/regex.h
1998-10-20 04:00:50 +00:00

15 lines
No EOL
283 B
C

/*
* Generic Regex
*/
#ifndef _AC_REGEX_H_
#define _AC_REGEX_H_
#ifdef HAVE_REGEX_H
/* have regex.h, assume it's POSIX compliant */
# include <regex.h>
#else
/* no regex.h, use compatibility library */
# include <regex-compat.h>
#endif /* ! regex.h */
#endif /* _AC_REGEX_H_ */