aboutsummaryrefslogtreecommitdiff
path: root/include/xregex.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/xregex.h')
-rw-r--r--include/xregex.h12
1 files changed, 4 insertions, 8 deletions
diff --git a/include/xregex.h b/include/xregex.h
index 90cf124ee..61658ed85 100644
--- a/include/xregex.h
+++ b/include/xregex.h
@@ -8,20 +8,16 @@
8 * 8 *
9 * Licensed under GPLv2 or later, see file License in this tarball for details. 9 * Licensed under GPLv2 or later, see file License in this tarball for details.
10 */ 10 */
11#ifndef __BB_REGEX__ 11#ifndef BB_REGEX_H
12#define __BB_REGEX__ 12#define BB_REGEX_H 1
13 13
14#include <regex.h> 14#include <regex.h>
15 15
16#if __GNUC_PREREQ(4,1) 16PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN
17# pragma GCC visibility push(hidden)
18#endif
19 17
20char* regcomp_or_errmsg(regex_t *preg, const char *regex, int cflags) FAST_FUNC; 18char* regcomp_or_errmsg(regex_t *preg, const char *regex, int cflags) FAST_FUNC;
21void xregcomp(regex_t *preg, const char *regex, int cflags) FAST_FUNC; 19void xregcomp(regex_t *preg, const char *regex, int cflags) FAST_FUNC;
22 20
23#if __GNUC_PREREQ(4,1) 21POP_SAVED_FUNCTION_VISIBILITY
24# pragma GCC visibility pop
25#endif
26 22
27#endif 23#endif