diff options
Diffstat (limited to 'usr/src/head/iso/time_iso.h')
-rw-r--r-- | usr/src/head/iso/time_iso.h | 21 |
1 files changed, 2 insertions, 19 deletions
diff --git a/usr/src/head/iso/time_iso.h b/usr/src/head/iso/time_iso.h index 07baaa5ccd..bc94ec8995 100644 --- a/usr/src/head/iso/time_iso.h +++ b/usr/src/head/iso/time_iso.h @@ -22,8 +22,9 @@ /* Copyright (c) 1988 AT&T */ /* All Rights Reserved */ - /* + * Copyright 2014 Garrett D'Amore <garrett@damore.org> + * * Copyright 2004 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ @@ -43,8 +44,6 @@ #ifndef _ISO_TIME_ISO_H #define _ISO_TIME_ISO_H -#pragma ident "%Z%%M% %I% %E% SMI" /* SVr4.0 1.18 */ - #include <sys/feature_tests.h> #ifdef __cplusplus @@ -97,8 +96,6 @@ struct tm { /* see ctime(3) */ }; -#if defined(__STDC__) - extern char *asctime(const struct tm *); extern clock_t clock(void); extern char *ctime(const time_t *); @@ -110,20 +107,6 @@ extern time_t time(time_t *); extern size_t strftime(char *_RESTRICT_KYWD, size_t, const char *_RESTRICT_KYWD, const struct tm *_RESTRICT_KYWD); -#else /* __STDC__ */ - -extern char *asctime(); -extern clock_t clock(); -extern char *ctime(); -extern double difftime(); -extern struct tm *gmtime(); -extern struct tm *localtime(); -extern time_t mktime(); -extern time_t time(); -extern size_t strftime(); - -#endif /* __STDC__ */ - #if __cplusplus >= 199711L } #endif /* end of namespace std */ |