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 /shell/math.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 'shell/math.h')
-rw-r--r-- | shell/math.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/shell/math.h b/shell/math.h index 195fc20ba..51dbb56cb 100644 --- a/shell/math.h +++ b/shell/math.h | |||
@@ -72,8 +72,10 @@ | |||
72 | * below for the exact things that are available. | 72 | * below for the exact things that are available. |
73 | */ | 73 | */ |
74 | 74 | ||
75 | #ifndef _SHELL_MATH_ | 75 | #ifndef SHELL_MATH_H |
76 | #define _SHELL_MATH_ | 76 | #define SHELL_MATH_H 1 |
77 | |||
78 | PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN | ||
77 | 79 | ||
78 | #if ENABLE_SH_MATH_SUPPORT_64 | 80 | #if ENABLE_SH_MATH_SUPPORT_64 |
79 | typedef long long arith_t; | 81 | typedef long long arith_t; |
@@ -96,4 +98,6 @@ typedef struct arith_eval_hooks { | |||
96 | 98 | ||
97 | arith_t arith(const char *expr, int *perrcode, arith_eval_hooks_t*); | 99 | arith_t arith(const char *expr, int *perrcode, arith_eval_hooks_t*); |
98 | 100 | ||
101 | POP_SAVED_FUNCTION_VISIBILITY | ||
102 | |||
99 | #endif | 103 | #endif |