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