From e8627df69dc353e5db872d631d2b73001679f649 Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Sun, 28 Oct 2001 20:13:16 +0000 Subject: Add time_to_int(), int_to_time(), time_to_long(), long_to_time(). --- include/time.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'include') diff --git a/include/time.h b/include/time.h index 6cff71399139..9143cbc3ef98 100644 --- a/include/time.h +++ b/include/time.h @@ -140,6 +140,10 @@ time_t time32_to_time __P((__int32_t t32)); __int32_t time_to_time32 __P((time_t t)); time_t time64_to_time __P((__int64_t t64)); __int64_t time_to_time64 __P((time_t t)); +long time_to_long __P((time_t t)); +time_t long_to_time __P((long tlong)); +int time_to_int __P((time_t t)); +time_t int_to_time __P((int tint)); #endif /* not ANSI */ #ifndef _ANSI_SOURCE -- cgit v1.2.3