diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2007-05-26 16:44:20 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2007-05-26 16:44:20 +0000 |
commit | caf6acaea106e3af96450e7e8260b530f11055f6 (patch) | |
tree | 36bf70fe7e6c67e4ab37c446a191272eb90097ed /include | |
parent | dc95a5501c89b98e36c298a0b19a67bd0ae73dcd (diff) | |
download | busybox-w32-caf6acaea106e3af96450e7e8260b530f11055f6.tar.gz busybox-w32-caf6acaea106e3af96450e7e8260b530f11055f6.tar.bz2 busybox-w32-caf6acaea106e3af96450e7e8260b530f11055f6.zip |
xpipe: introduce (saves ~170 bytes)
udhcp/signalpipe.c: use pipe instead of socketpair.
git-svn-id: svn://busybox.net/trunk/busybox@18695 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h index 1859a3f09..4561ef6a5 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -261,10 +261,10 @@ int xopen(const char *pathname, int flags); | |||
261 | int xopen3(const char *pathname, int flags, int mode); | 261 | int xopen3(const char *pathname, int flags, int mode); |
262 | int open_or_warn(const char *pathname, int flags); | 262 | int open_or_warn(const char *pathname, int flags); |
263 | int open3_or_warn(const char *pathname, int flags, int mode); | 263 | int open3_or_warn(const char *pathname, int flags, int mode); |
264 | void xpipe(int filedes[2]); | ||
264 | off_t xlseek(int fd, off_t offset, int whence); | 265 | off_t xlseek(int fd, off_t offset, int whence); |
265 | off_t fdlength(int fd); | 266 | off_t fdlength(int fd); |
266 | 267 | ||
267 | |||
268 | int xsocket(int domain, int type, int protocol); | 268 | int xsocket(int domain, int type, int protocol); |
269 | void xbind(int sockfd, struct sockaddr *my_addr, socklen_t addrlen); | 269 | void xbind(int sockfd, struct sockaddr *my_addr, socklen_t addrlen); |
270 | void xlisten(int s, int backlog); | 270 | void xlisten(int s, int backlog); |