aboutsummaryrefslogtreecommitdiff
path: root/networking/udhcp/dhcpd.h
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-05-09 17:59:34 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-05-09 17:59:34 +0000
commit98636eb08c5ecc216e18970e11f7021206ac9b04 (patch)
treedfc70b7c6bf6276776c4e8198457dcf2df1e09fb /networking/udhcp/dhcpd.h
parent50dbed95fb7c0a97135b771385160ca26c377a15 (diff)
downloadbusybox-w32-98636eb08c5ecc216e18970e11f7021206ac9b04.tar.gz
busybox-w32-98636eb08c5ecc216e18970e11f7021206ac9b04.tar.bz2
busybox-w32-98636eb08c5ecc216e18970e11f7021206ac9b04.zip
Use intra-DSO calls when we build libbusybox. No-op for normal build.
This was Bernhard Fischer' idea. text data bss dec hex filename 773549 7781 9740 791070 c121e busybox.t7/0_lib/libbusybox.so.1.11.0.svn_unstripped 769683 7397 9740 786820 c0184 busybox.t9t/0_lib/libbusybox.so.1.11.0.svn_unstripped
Diffstat (limited to 'networking/udhcp/dhcpd.h')
-rw-r--r--networking/udhcp/dhcpd.h8
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);
114struct option_set *find_option(struct option_set *opt_list, uint8_t code); 118struct 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