diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-08-22 05:39:15 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-08-22 05:39:15 +0200 |
commit | e7b0a9e5bc60617fb00c321430253d7771d40fd3 (patch) | |
tree | 5152c7e606fb72423de8d56c5c97a977c6852033 /include | |
parent | fd27fa83094a85b3e8cb0485467ffa65b572b923 (diff) | |
download | busybox-w32-e7b0a9e5bc60617fb00c321430253d7771d40fd3.tar.gz busybox-w32-e7b0a9e5bc60617fb00c321430253d7771d40fd3.tar.bz2 busybox-w32-e7b0a9e5bc60617fb00c321430253d7771d40fd3.zip |
patch: support "patch [FILE [PATCH]]" format
function old new delta
xopen_stdin - 15 +15
patch_main 2075 2041 -34
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h index ac818a9ea..3fd754511 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -417,6 +417,7 @@ int xopen3(const char *pathname, int flags, int mode) FAST_FUNC; | |||
417 | int open_or_warn(const char *pathname, int flags) FAST_FUNC; | 417 | int open_or_warn(const char *pathname, int flags) FAST_FUNC; |
418 | int open3_or_warn(const char *pathname, int flags, int mode) FAST_FUNC; | 418 | int open3_or_warn(const char *pathname, int flags, int mode) FAST_FUNC; |
419 | int open_or_warn_stdin(const char *pathname) FAST_FUNC; | 419 | int open_or_warn_stdin(const char *pathname) FAST_FUNC; |
420 | int xopen_stdin(const char *pathname) FAST_FUNC; | ||
420 | void xrename(const char *oldpath, const char *newpath) FAST_FUNC; | 421 | void xrename(const char *oldpath, const char *newpath) FAST_FUNC; |
421 | int rename_or_warn(const char *oldpath, const char *newpath) FAST_FUNC; | 422 | int rename_or_warn(const char *oldpath, const char *newpath) FAST_FUNC; |
422 | off_t xlseek(int fd, off_t offset, int whence) FAST_FUNC; | 423 | off_t xlseek(int fd, off_t offset, int whence) FAST_FUNC; |