aboutsummaryrefslogtreecommitdiff
path: root/include/libbb.h
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2014-05-06 20:41:10 +0100
committerRon Yorston <rmy@pobox.com>2014-05-06 20:41:10 +0100
commitd3bef66324a8ca5eed9ad7c15ead3a1cc9a9151e (patch)
tree4b364ba4b6b9e96c2629fe382fef0248d76833dd /include/libbb.h
parent7905d97aeece18da362a5a1e066abff2d2e5c16b (diff)
parentd257608a8429b64e1a04c7cb6d99975eeb2c3955 (diff)
downloadbusybox-w32-d3bef66324a8ca5eed9ad7c15ead3a1cc9a9151e.tar.gz
busybox-w32-d3bef66324a8ca5eed9ad7c15ead3a1cc9a9151e.tar.bz2
busybox-w32-d3bef66324a8ca5eed9ad7c15ead3a1cc9a9151e.zip
Merge branch 'busybox' into merge
Conflicts: debianutils/which.c editors/vi.c libbb/executable.c
Diffstat (limited to 'include/libbb.h')
-rw-r--r--include/libbb.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/include/libbb.h b/include/libbb.h
index 3b2bf0a0a..c80cd80d7 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -928,9 +928,9 @@ void FAST_FUNC update_utmp(pid_t pid, int new_type, const char *tty_name, const
928#endif 928#endif
929 929
930 930
931int execable_file(const char *name) FAST_FUNC; 931int file_is_executable(const char *name) FAST_FUNC;
932char *find_execable(const char *filename, char **PATHp) FAST_FUNC; 932char *find_executable(const char *filename, char **PATHp) FAST_FUNC;
933int exists_execable(const char *filename) FAST_FUNC; 933int executable_exists(const char *filename) FAST_FUNC;
934 934
935/* BB_EXECxx always execs (it's not doing NOFORK/NOEXEC stuff), 935/* BB_EXECxx always execs (it's not doing NOFORK/NOEXEC stuff),
936 * but it may exec busybox and call applet instead of searching PATH. 936 * but it may exec busybox and call applet instead of searching PATH.
@@ -1090,6 +1090,7 @@ enum {
1090 LOGMODE_BOTH = LOGMODE_SYSLOG + LOGMODE_STDIO, 1090 LOGMODE_BOTH = LOGMODE_SYSLOG + LOGMODE_STDIO,
1091}; 1091};
1092extern const char *msg_eol; 1092extern const char *msg_eol;
1093extern smallint syslog_level;
1093extern smallint logmode; 1094extern smallint logmode;
1094extern int die_sleep; 1095extern int die_sleep;
1095extern uint8_t xfunc_error_retval; 1096extern uint8_t xfunc_error_retval;