summaryrefslogtreecommitdiff
path: root/include/time.h
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>1994-12-26 10:19:41 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>1994-12-26 10:19:41 +0000
commit8c2f5ad758f5447a6f6cc9f14d4c38d78aed403d (patch)
tree5b7170d79b5c0e0950c2168d210ad5977b4cd98c /include/time.h
parent8c2f8d06537c619040f1b7c1a87ab71012067eba (diff)
downloadsrc-test2-8c2f5ad758f5447a6f6cc9f14d4c38d78aed403d.tar.gz
src-test2-8c2f5ad758f5447a6f6cc9f14d4c38d78aed403d.zip
Declare useful functions (timelocal() and timegm())
Notes
Notes: svn path=/head/; revision=5231
Diffstat (limited to 'include/time.h')
-rw-r--r--include/time.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/time.h b/include/time.h
index 93d7d7275ecb..f6473d016d0f 100644
--- a/include/time.h
+++ b/include/time.h
@@ -98,6 +98,8 @@ void tzset __P((void));
#if !defined(_ANSI_SOURCE) && !defined(_POSIX_SOURCE)
char *timezone __P((int, int));
void tzsetwall __P((void));
+time_t timelocal __P((struct tm * const));
+time_t timegm __P((struct tm * const));
#endif /* neither ANSI nor POSIX */
__END_DECLS