aboutsummaryrefslogtreecommitdiff
path: root/networking/udhcp/files.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-09-26 09:34:59 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-09-26 09:34:59 +0000
commitf1980f67d3b005090a31b7465d219e8ca19c5736 (patch)
tree746646c47f2c42f4b94ced5cb89774406d3e8a24 /networking/udhcp/files.c
parentcdb0b652ddd6bfbc4d83e21453b3b4137b887e18 (diff)
downloadbusybox-w32-f1980f67d3b005090a31b7465d219e8ca19c5736.tar.gz
busybox-w32-f1980f67d3b005090a31b7465d219e8ca19c5736.tar.bz2
busybox-w32-f1980f67d3b005090a31b7465d219e8ca19c5736.zip
dhcp: add FAST_FUNC as appropriate. -160 bytes.
Diffstat (limited to 'networking/udhcp/files.c')
-rw-r--r--networking/udhcp/files.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/networking/udhcp/files.c b/networking/udhcp/files.c
index ff5847d25..b7bad3309 100644
--- a/networking/udhcp/files.c
+++ b/networking/udhcp/files.c
@@ -69,7 +69,7 @@ static int read_yn(const char *line, void *arg)
69 69
70 70
71/* find option 'code' in opt_list */ 71/* find option 'code' in opt_list */
72struct option_set *find_option(struct option_set *opt_list, uint8_t code) 72struct option_set* FAST_FUNC find_option(struct option_set *opt_list, uint8_t code)
73{ 73{
74 while (opt_list && opt_list->data[OPT_CODE] < code) 74 while (opt_list && opt_list->data[OPT_CODE] < code)
75 opt_list = opt_list->next; 75 opt_list = opt_list->next;
@@ -307,7 +307,7 @@ static const struct config_keyword keywords[] = {
307}; 307};
308enum { KWS_WITH_DEFAULTS = ARRAY_SIZE(keywords) - 6 }; 308enum { KWS_WITH_DEFAULTS = ARRAY_SIZE(keywords) - 6 };
309 309
310void read_config(const char *file) 310void FAST_FUNC read_config(const char *file)
311{ 311{
312 parser_t *parser; 312 parser_t *parser;
313 const struct config_keyword *k; 313 const struct config_keyword *k;
@@ -338,7 +338,7 @@ void read_config(const char *file)
338} 338}
339 339
340 340
341void write_leases(void) 341void FAST_FUNC write_leases(void)
342{ 342{
343 int fp; 343 int fp;
344 unsigned i; 344 unsigned i;
@@ -380,7 +380,7 @@ void write_leases(void)
380} 380}
381 381
382 382
383void read_leases(const char *file) 383void FAST_FUNC read_leases(const char *file)
384{ 384{
385 int fp; 385 int fp;
386 unsigned i; 386 unsigned i;