From 8c2f5ad758f5447a6f6cc9f14d4c38d78aed403d Mon Sep 17 00:00:00 2001 From: "Andrey A. Chernov" Date: Mon, 26 Dec 1994 10:19:41 +0000 Subject: [PATCH] Declare useful functions (timelocal() and timegm()) --- include/time.h | 2 ++ 1 file changed, 2 insertions(+) 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