diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/busybox.h | 4 | ||||
-rw-r--r-- | include/libbb.h | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/include/busybox.h b/include/busybox.h index ec6953e..5272024 100644 --- a/include/busybox.h +++ b/include/busybox.h @@ -59,7 +59,9 @@ extern const uint8_t applet_install_loc[]; /* Length of these names has effect on size of libbusybox * and "individual" binaries. Keep them short. */ -void lbb_prepare(const char *applet, char **argv) MAIN_EXTERNALLY_VISIBLE; +void lbb_prepare(const char *applet + USE_FEATURE_INDIVIDUAL(, char **argv) + ) MAIN_EXTERNALLY_VISIBLE; #if ENABLE_BUILD_LIBBUSYBOX #if ENABLE_FEATURE_SHARED_BUSYBOX int lbb_main(int argc, char **argv) EXTERNALLY_VISIBLE; diff --git a/include/libbb.h b/include/libbb.h index 09deba6..ee1ef51 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -1120,7 +1120,7 @@ enum { | PSSCAN_STIME | PSSCAN_UTIME | PSSCAN_START_TIME | PSSCAN_TTY, }; -procps_status_t* alloc_procps_scan(int flags); +//procps_status_t* alloc_procps_scan(void); void free_procps_scan(procps_status_t* sp); procps_status_t* procps_scan(procps_status_t* sp, int flags); /* Format cmdline (up to col chars) into char buf[col+1] */ |