diff options
author | Denys Vlasenko | 2010-02-01 23:48:27 +0100 |
---|---|---|
committer | Denys Vlasenko | 2010-02-01 23:48:27 +0100 |
commit | 40e7d25aca1abbe080e00e2bed64b444a5ec7858 (patch) | |
tree | 05cda08f66542aeb94d1ebb906a0f04b04a41d62 /include/libbb.h | |
parent | 4875e7148b0512ee3c255526a484503da984935a (diff) | |
download | busybox-40e7d25aca1abbe080e00e2bed64b444a5ec7858.zip busybox-40e7d25aca1abbe080e00e2bed64b444a5ec7858.tar.gz |
mkXXXX: unify [KBYTES] parameter handling (added it to mkswap)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'include/libbb.h')
-rw-r--r-- | include/libbb.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h index a86d644..09852d0 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -412,6 +412,11 @@ int rename_or_warn(const char *oldpath, const char *newpath) FAST_FUNC; off_t xlseek(int fd, off_t offset, int whence) FAST_FUNC; off_t fdlength(int fd) FAST_FUNC; +uoff_t FAST_FUNC get_volume_size_in_bytes(int fd, + const char *override, + unsigned override_units, + int extend); + void xpipe(int filedes[2]) FAST_FUNC; /* In this form code with pipes is much more readable */ struct fd_pair { int rd; int wr; }; |