aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/busybox.h4
-rw-r--r--include/libbb.h2
2 files changed, 4 insertions, 2 deletions
diff --git a/include/busybox.h b/include/busybox.h
index ec6953e87..52720244b 100644
--- a/include/busybox.h
+++ b/include/busybox.h
@@ -59,7 +59,9 @@ extern const uint8_t applet_install_loc[];
59/* Length of these names has effect on size of libbusybox 59/* Length of these names has effect on size of libbusybox
60 * and "individual" binaries. Keep them short. 60 * and "individual" binaries. Keep them short.
61 */ 61 */
62void lbb_prepare(const char *applet, char **argv) MAIN_EXTERNALLY_VISIBLE; 62void lbb_prepare(const char *applet
63 USE_FEATURE_INDIVIDUAL(, char **argv)
64 ) MAIN_EXTERNALLY_VISIBLE;
63#if ENABLE_BUILD_LIBBUSYBOX 65#if ENABLE_BUILD_LIBBUSYBOX
64#if ENABLE_FEATURE_SHARED_BUSYBOX 66#if ENABLE_FEATURE_SHARED_BUSYBOX
65int lbb_main(int argc, char **argv) EXTERNALLY_VISIBLE; 67int lbb_main(int argc, char **argv) EXTERNALLY_VISIBLE;
diff --git a/include/libbb.h b/include/libbb.h
index 09deba671..ee1ef518e 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -1120,7 +1120,7 @@ enum {
1120 | PSSCAN_STIME | PSSCAN_UTIME | PSSCAN_START_TIME 1120 | PSSCAN_STIME | PSSCAN_UTIME | PSSCAN_START_TIME
1121 | PSSCAN_TTY, 1121 | PSSCAN_TTY,
1122}; 1122};
1123procps_status_t* alloc_procps_scan(int flags); 1123//procps_status_t* alloc_procps_scan(void);
1124void free_procps_scan(procps_status_t* sp); 1124void free_procps_scan(procps_status_t* sp);
1125procps_status_t* procps_scan(procps_status_t* sp, int flags); 1125procps_status_t* procps_scan(procps_status_t* sp, int flags);
1126/* Format cmdline (up to col chars) into char buf[col+1] */ 1126/* Format cmdline (up to col chars) into char buf[col+1] */