diff options
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/xfuncs.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libbb/xfuncs.c b/libbb/xfuncs.c index b08f92d81..c18a1d998 100644 --- a/libbb/xfuncs.c +++ b/libbb/xfuncs.c | |||
@@ -122,6 +122,12 @@ int xopen3(const char *pathname, int flags, int mode) | |||
122 | return ret; | 122 | return ret; |
123 | } | 123 | } |
124 | 124 | ||
125 | void xunlink(const char *pathname) | ||
126 | { | ||
127 | if (unlink(pathname)) | ||
128 | bb_perror_msg_and_die("cannot remove file '%s'", pathname); | ||
129 | } | ||
130 | |||
125 | // Turn on nonblocking I/O on a fd | 131 | // Turn on nonblocking I/O on a fd |
126 | int ndelay_on(int fd) | 132 | int ndelay_on(int fd) |
127 | { | 133 | { |