diff options
Diffstat (limited to 'networking/udhcp/dhcpd.h')
-rw-r--r-- | networking/udhcp/dhcpd.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/networking/udhcp/dhcpd.h b/networking/udhcp/dhcpd.h index 4ce442bef..8a206ea49 100644 --- a/networking/udhcp/dhcpd.h +++ b/networking/udhcp/dhcpd.h | |||
@@ -4,6 +4,10 @@ | |||
4 | #ifndef _DHCPD_H | 4 | #ifndef _DHCPD_H |
5 | #define _DHCPD_H | 5 | #define _DHCPD_H |
6 | 6 | ||
7 | #if __GNUC_PREREQ(4,1) | ||
8 | # pragma GCC visibility push(hidden) | ||
9 | #endif | ||
10 | |||
7 | /************************************/ | 11 | /************************************/ |
8 | /* Defaults _you_ may want to tweak */ | 12 | /* Defaults _you_ may want to tweak */ |
9 | /************************************/ | 13 | /************************************/ |
@@ -114,4 +118,8 @@ void read_leases(const char *file); | |||
114 | struct option_set *find_option(struct option_set *opt_list, uint8_t code); | 118 | struct option_set *find_option(struct option_set *opt_list, uint8_t code); |
115 | 119 | ||
116 | 120 | ||
121 | #if __GNUC_PREREQ(4,1) | ||
122 | # pragma GCC visibility pop | ||
123 | #endif | ||
124 | |||
117 | #endif | 125 | #endif |