diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-08-14 16:43:01 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-08-14 16:43:01 +0000 |
commit | dbe6e66d6a8addbbf9438f40a645be8ae105fa8a (patch) | |
tree | a745eb3196d4c031568256345790d85bc29edc63 /include | |
parent | a1120a8ea29d4a825cbbb796fa15d77b15ca401f (diff) | |
download | busybox-dbe6e66d6a8addbbf9438f40a645be8ae105fa8a.tar.gz |
trylink: automatically use custom link script if user provides one
vinfo_msg: one user (info_msg), incorporate in it
*: style fixes
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/libbb.h b/include/libbb.h index 0ea88a623..fc0a0ae6c 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -280,7 +280,7 @@ int xsocket(int domain, int type, int protocol); void xbind(int sockfd, struct sockaddr *my_addr, socklen_t addrlen); void xlisten(int s, int backlog); void xconnect(int s, const struct sockaddr *s_addr, socklen_t addrlen); -ssize_t xsendto(int s, const void *buf, size_t len, const struct sockaddr *to, +ssize_t xsendto(int s, const void *buf, size_t len, const struct sockaddr *to, socklen_t tolen); int setsockopt_reuseaddr(int fd); int setsockopt_broadcast(int fd); @@ -656,7 +656,6 @@ extern void bb_info_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2 /* These are used internally -- you shouldn't need to use them */ extern void bb_verror_msg(const char *s, va_list p, const char *strerr); extern void bb_vperror_msg(const char *s, va_list p); -extern void bb_vinfo_msg(const char *s, va_list p); /* applets which are useful from another applets */ |