aboutsummaryrefslogtreecommitdiff
path: root/include/xregex.h
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2009-04-09 12:35:13 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2009-04-09 12:35:13 +0000
commitf81e8dbc74186f34faa5ae2b0fe8bdc3f18114ae (patch)
tree91ee95914c2b9a07817bd6f596fc3df758651147 /include/xregex.h
parent327fd47f362843fc62fbee6169904c416ca13d11 (diff)
downloadbusybox-w32-f81e8dbc74186f34faa5ae2b0fe8bdc3f18114ae.tar.gz
busybox-w32-f81e8dbc74186f34faa5ae2b0fe8bdc3f18114ae.tar.bz2
busybox-w32-f81e8dbc74186f34faa5ae2b0fe8bdc3f18114ae.zip
*: make "pragma GCC visibility push(hidden)" less ugly
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