diff options
author | "Vladimir N. Oleynik" <dzo@simtreas.ru> | 2005-09-29 16:18:57 +0000 |
---|---|---|
committer | "Vladimir N. Oleynik" <dzo@simtreas.ru> | 2005-09-29 16:18:57 +0000 |
commit | 39a841cecf616098c9c8cf63bbfea5ea2922097c (patch) | |
tree | 5b3a1d569d1e952d8c43899050dca4d6c47bf176 /include | |
parent | 6a60c821a81b01a136037f8389bd42d86b37e395 (diff) |
change interface to bb_xasprintf() - more perfect for me.
ln.c: error_msg(str)->error_msg(%s, str) - remove standart "feature" for hackers
reduce 100 bytes don't care in sum
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/libbb.h b/include/libbb.h index c92d97240..02bdb5861 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -408,8 +408,7 @@ void reset_ino_dev_hashtable(void); extern size_t bb_strlen(const char *string); #define strlen(x) bb_strlen(x) -void bb_xasprintf(char **string_ptr, const char *format, ...) __attribute__ ((format (printf, 2, 3))); - +char *bb_xasprintf(const char *format, ...) __attribute__ ((format (printf, 1, 2))); #define FAIL_DELAY 3 extern void change_identity ( const struct passwd *pw ); |