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 /modutils | |
parent | 327fd47f362843fc62fbee6169904c416ca13d11 (diff) |
*: make "pragma GCC visibility push(hidden)" less ugly
Diffstat (limited to 'modutils')
-rw-r--r-- | modutils/modutils.h | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/modutils/modutils.h b/modutils/modutils.h index 0a29ff240..086bb3977 100644 --- a/modutils/modutils.h +++ b/modutils/modutils.h @@ -6,14 +6,12 @@ * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. */ -#ifndef __MODUTILS_H__ -#define __MODUTILS_H__ +#ifndef MODUTILS_H +#define MODUTILS_H 1 #include "libbb.h" -#if __GNUC_PREREQ(4,1) -# pragma GCC visibility push(hidden) -#endif +PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN /* linux/include/linux/module.h has 64, but this is also used * internally for the maximum alias name length, which can be quite long */ @@ -62,8 +60,6 @@ int FAST_FUNC bb_delete_module(const char *module, unsigned int flags); int FAST_FUNC bb_init_module_24(const char *module, const char *options); #endif -#if __GNUC_PREREQ(4,1) -# pragma GCC visibility pop -#endif +POP_SAVED_FUNCTION_VISIBILITY #endif |