diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-01-09 19:10:49 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-01-09 19:10:49 +0100 |
commit | dc698bb038756a926aaa529bda1b939eab2c1676 (patch) | |
tree | 4084a40897d9d81816228935a1398e80dd4b173b /include | |
parent | 0681137972dc89b5003b0415e09184c0ecf1c875 (diff) | |
download | busybox-w32-dc698bb038756a926aaa529bda1b939eab2c1676.tar.gz busybox-w32-dc698bb038756a926aaa529bda1b939eab2c1676.tar.bz2 busybox-w32-dc698bb038756a926aaa529bda1b939eab2c1676.zip |
*: make it easier to distinquish "struct tm", pointer to one, etc
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 4 | ||||
-rw-r--r-- | include/rtc_.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/include/libbb.h b/include/libbb.h index cda59dc1f..e07bb52f6 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -444,8 +444,8 @@ struct BUG_too_small { | |||
444 | }; | 444 | }; |
445 | 445 | ||
446 | 446 | ||
447 | void parse_datestr(const char *date_str, struct tm *tm_time) FAST_FUNC; | 447 | void parse_datestr(const char *date_str, struct tm *ptm) FAST_FUNC; |
448 | time_t validate_tm_time(const char *date_str, struct tm *tm_time) FAST_FUNC; | 448 | time_t validate_tm_time(const char *date_str, struct tm *ptm) FAST_FUNC; |
449 | 449 | ||
450 | 450 | ||
451 | int xsocket(int domain, int type, int protocol) FAST_FUNC; | 451 | int xsocket(int domain, int type, int protocol) FAST_FUNC; |
diff --git a/include/rtc_.h b/include/rtc_.h index 2b4ae778d..b5fe8ec32 100644 --- a/include/rtc_.h +++ b/include/rtc_.h | |||
@@ -13,8 +13,8 @@ PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN | |||
13 | 13 | ||
14 | int rtc_adjtime_is_utc(void) FAST_FUNC; | 14 | int rtc_adjtime_is_utc(void) FAST_FUNC; |
15 | int rtc_xopen(const char **default_rtc, int flags) FAST_FUNC; | 15 | int rtc_xopen(const char **default_rtc, int flags) FAST_FUNC; |
16 | void rtc_read_tm(struct tm *tm, int fd) FAST_FUNC; | 16 | void rtc_read_tm(struct tm *ptm, int fd) FAST_FUNC; |
17 | time_t rtc_tm2time(struct tm *tm, int utc) FAST_FUNC; | 17 | time_t rtc_tm2time(struct tm *ptm, int utc) FAST_FUNC; |
18 | 18 | ||
19 | 19 | ||
20 | /* | 20 | /* |