/*
* Copyright (c) 1995, 2000, Oracle and/or its affiliates. All rights reserved.
*/
#ifndef _RE_COMP_H
#define _RE_COMP_H
#include <sys/feature_tests.h>
#ifdef __cplusplus
extern "C" {
#endif
#if defined(__STDC__)
extern char *re_comp(const char *);
extern int re_exec(const char *);
#else
extern char *re_comp();
extern int re_exec();
#endif /* __STDC__ */
#ifdef __cplusplus
}
#endif
#endif /* _RE_COMP_H */