aboutsummaryrefslogtreecommitdiff
path: root/networking/udhcp/files.h
diff options
context:
space:
mode:
Diffstat (limited to 'networking/udhcp/files.h')
-rw-r--r--networking/udhcp/files.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/networking/udhcp/files.h b/networking/udhcp/files.h
deleted file mode 100644
index 884693117..000000000
--- a/networking/udhcp/files.h
+++ /dev/null
@@ -1,20 +0,0 @@
1/* vi: set sw=4 ts=4: */
2/* files.h */
3#ifndef _FILES_H
4#define _FILES_H
5
6struct config_keyword {
7 const char *keyword;
8 int (* const handler)(const char *line, void *var);
9 void *var;
10 const char *def;
11};
12
13
14int read_config(const char *file);
15void write_leases(void);
16void read_leases(const char *file);
17
18struct option_set *find_option(struct option_set *opt_list, char code);
19
20#endif