diff options
Diffstat (limited to 'usr/src/head/iconv.h')
-rw-r--r-- | usr/src/head/iconv.h | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/usr/src/head/iconv.h b/usr/src/head/iconv.h index 9fb7e62d77..7d6230a47a 100644 --- a/usr/src/head/iconv.h +++ b/usr/src/head/iconv.h @@ -20,6 +20,8 @@ * CDDL HEADER END */ /* + * Copyright 2014 Garrett D'Amore <garrett@damore.org> + * * Copyright 2003 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ @@ -27,8 +29,6 @@ #ifndef _ICONV_H #define _ICONV_H -#pragma ident "%Z%%M% %I% %E% SMI" - #include <sys/feature_tests.h> #include <sys/types.h> @@ -38,7 +38,6 @@ extern "C" { typedef struct _iconv_info *iconv_t; -#if defined(__STDC__) extern iconv_t iconv_open(const char *, const char *); #ifdef _XPG6 extern size_t iconv(iconv_t, char **_RESTRICT_KYWD, @@ -50,11 +49,6 @@ extern size_t iconv(iconv_t, const char **_RESTRICT_KYWD, size_t *_RESTRICT_KYWD); #endif extern int iconv_close(iconv_t); -#else /* __STDC__ */ -extern iconv_t iconv_open(); -extern size_t iconv(); -extern int iconv_close(); -#endif #ifdef __cplusplus } |