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/libbb.h | |
parent | 6a60c821a81b01a136037f8389bd42d86b37e395 (diff) | |
download | busybox-w32-39a841cecf616098c9c8cf63bbfea5ea2922097c.tar.gz busybox-w32-39a841cecf616098c9c8cf63bbfea5ea2922097c.tar.bz2 busybox-w32-39a841cecf616098c9c8cf63bbfea5ea2922097c.zip |
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/libbb.h')
-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); | |||
408 | extern size_t bb_strlen(const char *string); | 408 | extern size_t bb_strlen(const char *string); |
409 | #define strlen(x) bb_strlen(x) | 409 | #define strlen(x) bb_strlen(x) |
410 | 410 | ||
411 | void bb_xasprintf(char **string_ptr, const char *format, ...) __attribute__ ((format (printf, 2, 3))); | 411 | char *bb_xasprintf(const char *format, ...) __attribute__ ((format (printf, 1, 2))); |
412 | |||
413 | 412 | ||
414 | #define FAIL_DELAY 3 | 413 | #define FAIL_DELAY 3 |
415 | extern void change_identity ( const struct passwd *pw ); | 414 | extern void change_identity ( const struct passwd *pw ); |