diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2009-04-09 12:35:13 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2009-04-09 12:35:13 +0000 |
commit | f81e8dbc74186f34faa5ae2b0fe8bdc3f18114ae (patch) | |
tree | 91ee95914c2b9a07817bd6f596fc3df758651147 /include/xregex.h | |
parent | 327fd47f362843fc62fbee6169904c416ca13d11 (diff) | |
download | busybox-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.h | 12 |
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) | 16 | PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN |
17 | # pragma GCC visibility push(hidden) | ||
18 | #endif | ||
19 | 17 | ||
20 | char* regcomp_or_errmsg(regex_t *preg, const char *regex, int cflags) FAST_FUNC; | 18 | char* regcomp_or_errmsg(regex_t *preg, const char *regex, int cflags) FAST_FUNC; |
21 | void xregcomp(regex_t *preg, const char *regex, int cflags) FAST_FUNC; | 19 | void xregcomp(regex_t *preg, const char *regex, int cflags) FAST_FUNC; |
22 | 20 | ||
23 | #if __GNUC_PREREQ(4,1) | 21 | POP_SAVED_FUNCTION_VISIBILITY |
24 | # pragma GCC visibility pop | ||
25 | #endif | ||
26 | 22 | ||
27 | #endif | 23 | #endif |