aboutsummaryrefslogtreecommitdiff
path: root/include/libbb.h
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2015-03-14 20:33:00 +0000
committerRon Yorston <rmy@pobox.com>2015-03-14 20:33:00 +0000
commita4f58436b78fe59e57620c6e0301f213ee25f273 (patch)
tree8355f724926e605280af2d6f2b1ccc6b1bd02dee /include/libbb.h
parentba0c36cfcf84efbac6f89e27238e04bb57e9cd45 (diff)
parent49acc1a7618a28d34381cbb7661d7c981fcb238f (diff)
downloadbusybox-w32-a4f58436b78fe59e57620c6e0301f213ee25f273.tar.gz
busybox-w32-a4f58436b78fe59e57620c6e0301f213ee25f273.tar.bz2
busybox-w32-a4f58436b78fe59e57620c6e0301f213ee25f273.zip
Merge branch 'busybox' into merge
Conflicts: coreutils/od_bloaty.c libbb/lineedit.c
Diffstat (limited to 'include/libbb.h')
-rw-r--r--include/libbb.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h
index 2850b1d5a..1733e9a0f 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -402,6 +402,7 @@ const char *bb_basename(const char *name) FAST_FUNC;
402/* NB: can violate const-ness (similarly to strchr) */ 402/* NB: can violate const-ness (similarly to strchr) */
403char *last_char_is(const char *s, int c) FAST_FUNC; 403char *last_char_is(const char *s, int c) FAST_FUNC;
404const char* endofname(const char *name) FAST_FUNC; 404const char* endofname(const char *name) FAST_FUNC;
405char *is_prefixed_with(const char *string, const char *key) FAST_FUNC;
405 406
406int ndelay_on(int fd) FAST_FUNC; 407int ndelay_on(int fd) FAST_FUNC;
407int ndelay_off(int fd) FAST_FUNC; 408int ndelay_off(int fd) FAST_FUNC;
@@ -937,9 +938,11 @@ void die_if_bad_username(const char* name) FAST_FUNC;
937#if ENABLE_FEATURE_UTMP 938#if ENABLE_FEATURE_UTMP
938void FAST_FUNC write_new_utmp(pid_t pid, int new_type, const char *tty_name, const char *username, const char *hostname); 939void FAST_FUNC write_new_utmp(pid_t pid, int new_type, const char *tty_name, const char *username, const char *hostname);
939void FAST_FUNC update_utmp(pid_t pid, int new_type, const char *tty_name, const char *username, const char *hostname); 940void FAST_FUNC update_utmp(pid_t pid, int new_type, const char *tty_name, const char *username, const char *hostname);
941void FAST_FUNC update_utmp_DEAD_PROCESS(pid_t pid);
940#else 942#else
941# define write_new_utmp(pid, new_type, tty_name, username, hostname) ((void)0) 943# define write_new_utmp(pid, new_type, tty_name, username, hostname) ((void)0)
942# define update_utmp(pid, new_type, tty_name, username, hostname) ((void)0) 944# define update_utmp(pid, new_type, tty_name, username, hostname) ((void)0)
945# define update_utmp_DEAD_PROCESS(pid) ((void)0)
943#endif 946#endif
944 947
945 948