aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/applets.src.h2
-rw-r--r--include/libbb.h3
2 files changed, 3 insertions, 2 deletions
diff --git a/include/applets.src.h b/include/applets.src.h
index 29ab16706..00172b1bc 100644
--- a/include/applets.src.h
+++ b/include/applets.src.h
@@ -236,7 +236,7 @@ IF_LZOP(APPLET(lzop, BB_DIR_BIN, BB_SUID_DROP))
236IF_LZOP(APPLET_ODDNAME(lzopcat, lzop, BB_DIR_USR_BIN, BB_SUID_DROP, lzopcat)) 236IF_LZOP(APPLET_ODDNAME(lzopcat, lzop, BB_DIR_USR_BIN, BB_SUID_DROP, lzopcat))
237IF_MAKEDEVS(APPLET(makedevs, BB_DIR_SBIN, BB_SUID_DROP)) 237IF_MAKEDEVS(APPLET(makedevs, BB_DIR_SBIN, BB_SUID_DROP))
238IF_MAKEMIME(APPLET(makemime, BB_DIR_BIN, BB_SUID_DROP)) 238IF_MAKEMIME(APPLET(makemime, BB_DIR_BIN, BB_SUID_DROP))
239IF_MAN(APPLET(man, BB_DIR_SBIN, BB_SUID_DROP)) 239IF_MAN(APPLET(man, BB_DIR_USR_BIN, BB_SUID_DROP))
240IF_MATCHPATHCON(APPLET(matchpathcon, BB_DIR_USR_SBIN, BB_SUID_DROP)) 240IF_MATCHPATHCON(APPLET(matchpathcon, BB_DIR_USR_SBIN, BB_SUID_DROP))
241IF_MD5SUM(APPLET_NOEXEC(md5sum, md5_sha1_sum, BB_DIR_USR_BIN, BB_SUID_DROP, md5sum)) 241IF_MD5SUM(APPLET_NOEXEC(md5sum, md5_sha1_sum, BB_DIR_USR_BIN, BB_SUID_DROP, md5sum))
242IF_MICROCOM(APPLET(microcom, BB_DIR_USR_BIN, BB_SUID_DROP)) 242IF_MICROCOM(APPLET(microcom, BB_DIR_USR_BIN, BB_SUID_DROP))
diff --git a/include/libbb.h b/include/libbb.h
index 15a5a6623..f5b7d8dc7 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -536,7 +536,8 @@ struct BUG_too_small {
536 536
537void parse_datestr(const char *date_str, struct tm *ptm) FAST_FUNC; 537void parse_datestr(const char *date_str, struct tm *ptm) FAST_FUNC;
538time_t validate_tm_time(const char *date_str, struct tm *ptm) FAST_FUNC; 538time_t validate_tm_time(const char *date_str, struct tm *ptm) FAST_FUNC;
539 539char *strftime_HHMMSS(char *buf, unsigned len, time_t *tp) FAST_FUNC;
540char *strftime_YYYYMMDDHHMMSS(char *buf, unsigned len, time_t *tp) FAST_FUNC;
540 541
541int xsocket(int domain, int type, int protocol) FAST_FUNC; 542int xsocket(int domain, int type, int protocol) FAST_FUNC;
542void xbind(int sockfd, struct sockaddr *my_addr, socklen_t addrlen) FAST_FUNC; 543void xbind(int sockfd, struct sockaddr *my_addr, socklen_t addrlen) FAST_FUNC;