diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-12-26 17:40:33 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-12-26 17:40:33 +0000 |
commit | 270c17c0e66ffe9fe0e47e891a583b5c6f8512ef (patch) | |
tree | a4ba5d3f63cec034bb24507e123a63d4fda581b6 /include | |
parent | 3ef70d43adfa3eb0f74fefd72d05578b3e332b76 (diff) | |
download | busybox-w32-270c17c0e66ffe9fe0e47e891a583b5c6f8512ef.tar.gz busybox-w32-270c17c0e66ffe9fe0e47e891a583b5c6f8512ef.tar.bz2 busybox-w32-270c17c0e66ffe9fe0e47e891a583b5c6f8512ef.zip |
properly export externs thru *.h files
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/include/libbb.h b/include/libbb.h index 68e4851db..858adca4c 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -400,6 +400,15 @@ extern int bb_cat(char** argv); | |||
400 | extern int bb_echo(char** argv); | 400 | extern int bb_echo(char** argv); |
401 | extern int bb_test(int argc, char** argv); | 401 | extern int bb_test(int argc, char** argv); |
402 | 402 | ||
403 | |||
404 | /* Networking */ | ||
405 | int create_icmp_socket(void); | ||
406 | int create_icmp6_socket(void); | ||
407 | /* interface.c */ | ||
408 | extern int interface_opt_a; | ||
409 | int display_interfaces(char *ifname); | ||
410 | |||
411 | |||
403 | #ifndef BUILD_INDIVIDUAL | 412 | #ifndef BUILD_INDIVIDUAL |
404 | extern struct BB_applet *find_applet_by_name(const char *name); | 413 | extern struct BB_applet *find_applet_by_name(const char *name); |
405 | extern void run_applet_by_name(const char *name, int argc, char **argv); | 414 | extern void run_applet_by_name(const char *name, int argc, char **argv); |
@@ -438,8 +447,6 @@ int exists_execable(const char *filename); | |||
438 | USE_DESKTOP(long long) int uncompress(int fd_in, int fd_out); | 447 | USE_DESKTOP(long long) int uncompress(int fd_in, int fd_out); |
439 | int inflate(int in, int out); | 448 | int inflate(int in, int out); |
440 | 449 | ||
441 | int create_icmp_socket(void); | ||
442 | int create_icmp6_socket(void); | ||
443 | 450 | ||
444 | unsigned short bb_lookup_port(const char *port, const char *protocol, unsigned short default_port); | 451 | unsigned short bb_lookup_port(const char *port, const char *protocol, unsigned short default_port); |
445 | void bb_lookup_host(struct sockaddr_in *s_in, const char *host); | 452 | void bb_lookup_host(struct sockaddr_in *s_in, const char *host); |