diff options
author | Ron Yorston <rmy@pobox.com> | 2014-05-06 20:41:10 +0100 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2014-05-06 20:41:10 +0100 |
commit | d3bef66324a8ca5eed9ad7c15ead3a1cc9a9151e (patch) | |
tree | 4b364ba4b6b9e96c2629fe382fef0248d76833dd /include/libbb.h | |
parent | 7905d97aeece18da362a5a1e066abff2d2e5c16b (diff) | |
parent | d257608a8429b64e1a04c7cb6d99975eeb2c3955 (diff) | |
download | busybox-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.h | 7 |
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 | ||
931 | int execable_file(const char *name) FAST_FUNC; | 931 | int file_is_executable(const char *name) FAST_FUNC; |
932 | char *find_execable(const char *filename, char **PATHp) FAST_FUNC; | 932 | char *find_executable(const char *filename, char **PATHp) FAST_FUNC; |
933 | int exists_execable(const char *filename) FAST_FUNC; | 933 | int 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 | }; |
1092 | extern const char *msg_eol; | 1092 | extern const char *msg_eol; |
1093 | extern smallint syslog_level; | ||
1093 | extern smallint logmode; | 1094 | extern smallint logmode; |
1094 | extern int die_sleep; | 1095 | extern int die_sleep; |
1095 | extern uint8_t xfunc_error_retval; | 1096 | extern uint8_t xfunc_error_retval; |