summaryrefslogtreecommitdiffstats
path: root/include/time.h
diff options
context:
space:
mode:
authordillon <dillon@FreeBSD.org>2002-01-19 23:20:02 +0000
committerdillon <dillon@FreeBSD.org>2002-01-19 23:20:02 +0000
commitc3dbbbabdf7c1b6b8d7fe43ade44b555671e1c67 (patch)
tree262f00c422f3272c4031c870d746ed14c2f757d5 /include/time.h
parent6f44d9644f580c480b97e8c64ced8a7be849944e (diff)
downloadFreeBSD-src-c3dbbbabdf7c1b6b8d7fe43ade44b555671e1c67.zip
FreeBSD-src-c3dbbbabdf7c1b6b8d7fe43ade44b555671e1c67.tar.gz
I've been meaning to do this for a while. Add an underscore to the
time_to_xxx() and xxx_to_time() functions. e.g. _time_to_xxx() instead of time_to_xxx(), to make it more obvious that these are stopgap functions & placemarkers and not meant to create a defacto standard. They will eventually be replaced when a real standard comes out of committee.
Diffstat (limited to 'include/time.h')
-rw-r--r--include/time.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/include/time.h b/include/time.h
index 9143cbc..a5012a8 100644
--- a/include/time.h
+++ b/include/time.h
@@ -136,14 +136,14 @@ size_t strftime __P((char *, size_t, const char *, const struct tm *));
time_t time __P((time_t *));
#ifndef _ANSI_SOURCE
-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));
+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
OpenPOWER on IntegriCloud