diff options
author | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2014-01-31 11:23:59 +0000 |
---|---|---|
committer | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2014-01-31 11:23:59 +0000 |
commit | 159f69218dfbfc25dda011367da71826a97ca424 (patch) | |
tree | 2eaf05495904a9236c2ea2ad997a24057527a9b0 /include | |
parent | fadcbdc5b28d048ab519c6c938ec10e2c9c5ac66 (diff) |
- Move myctime() from irc_string.c to s_misc.c
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/branches/8.1.x@2971 82007160-df01-0410-b94d-b575c5fd34c7
Diffstat (limited to 'include')
-rw-r--r-- | include/irc_string.h | 2 | ||||
-rw-r--r-- | include/s_misc.h | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/include/irc_string.h b/include/irc_string.h index 8f7f00a..e407447 100644 --- a/include/irc_string.h +++ b/include/irc_string.h @@ -70,8 +70,6 @@ extern const char *libio_basename(const char *); */ extern void strip_tabs(char *, const char *, size_t); -const char *myctime(time_t); - #define EmptyString(x) (!(x) || (*(x) == '\0')) #ifndef HAVE_STRTOK_R diff --git a/include/s_misc.h b/include/s_misc.h index 53b9f1e..9876533 100644 --- a/include/s_misc.h +++ b/include/s_misc.h @@ -29,6 +29,7 @@ extern const char *date(time_t); extern const char *smalldate(time_t); +extern const char *myctime(time_t); #ifdef HAVE_LIBCRYPTO extern const char *ssl_get_cipher(const SSL *); #endif |