aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/libbb.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h
index c3baf9e7c..e8f1cf653 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -288,6 +288,8 @@ void xunlink(const char *pathname);
288void xstat(const char *pathname, struct stat *buf); 288void xstat(const char *pathname, struct stat *buf);
289int xopen(const char *pathname, int flags); 289int xopen(const char *pathname, int flags);
290int xopen3(const char *pathname, int flags, int mode); 290int xopen3(const char *pathname, int flags, int mode);
291int open_or_warn(const char *pathname, int flags);
292int open3_or_warn(const char *pathname, int flags, int mode);
291off_t xlseek(int fd, off_t offset, int whence); 293off_t xlseek(int fd, off_t offset, int whence);
292off_t fdlength(int fd); 294off_t fdlength(int fd);
293 295