diff options
author | kientzle <kientzle@FreeBSD.org> | 2009-03-06 05:14:55 +0000 |
---|---|---|
committer | kientzle <kientzle@FreeBSD.org> | 2009-03-06 05:14:55 +0000 |
commit | 832acf54b286b99137c88bcba998c90f6a2c6a82 (patch) | |
tree | 05876ae8fd18c0cdb5b8e5844dacf40a7bd41276 /lib/libarchive/archive_string.h | |
parent | e9d024072e3473c8cad012b0657f9214a09fb460 (diff) | |
download | FreeBSD-src-832acf54b286b99137c88bcba998c90f6a2c6a82.zip FreeBSD-src-832acf54b286b99137c88bcba998c90f6a2c6a82.tar.gz |
Merge r505 from libarchive.googlecode.com: Fix %ju support. Simplify
the code here a bit by making the int formatting functions static to
archive_string_sprintf.c, which is the only place this has ever been
used.
Diffstat (limited to 'lib/libarchive/archive_string.h')
-rw-r--r-- | lib/libarchive/archive_string.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/libarchive/archive_string.h b/lib/libarchive/archive_string.h index 73e527d..7960b8e 100644 --- a/lib/libarchive/archive_string.h +++ b/lib/libarchive/archive_string.h @@ -66,11 +66,6 @@ struct archive_string * __archive_strappend_char(struct archive_string *, char); #define archive_strappend_char __archive_strappend_char -/* Append an integer in the specified base (2 <= base <= 16). */ -struct archive_string * -__archive_strappend_int(struct archive_string *as, int d, int base); -#define archive_strappend_int __archive_strappend_int - /* Convert a wide-char string to UTF-8 and append the result. */ struct archive_string * __archive_strappend_w_utf8(struct archive_string *, const wchar_t *); |