summaryrefslogtreecommitdiff
path: root/include/time.h
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2011-03-10 11:34:38 +0100
committerPeter S. Mazinger <ps.m@gmx.net>2011-03-10 11:34:38 +0100
commit24a14a0bb867f02ba87b498ee64e3ed6ce33b27a (patch)
tree45592155f7acc249bcdcb32ad08b82e3272f342a /include/time.h
parentfcde46eae5c16948c71f71d0b8fb82019f60f51f (diff)
time.c, time.h: remove unused hidden strftime/strptime
Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Diffstat (limited to 'include/time.h')
-rw-r--r--include/time.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/time.h b/include/time.h
index 7fcdf68e6..65071a908 100644
--- a/include/time.h
+++ b/include/time.h
@@ -207,7 +207,6 @@ extern time_t mktime (struct tm *__tp) __THROW;
extern size_t strftime (char *__restrict __s, size_t __maxsize,
__const char *__restrict __format,
__const struct tm *__restrict __tp) __THROW;
-libc_hidden_proto(strftime)
__END_NAMESPACE_STD
# ifdef __USE_XOPEN
@@ -216,7 +215,6 @@ __END_NAMESPACE_STD
extern char *strptime (__const char *__restrict __s,
__const char *__restrict __fmt, struct tm *__tp)
__THROW;
-libc_hidden_proto(strptime)
# endif
#ifdef __UCLIBC_HAS_XLOCALE__