diff options
author | Yaakov Selkowitz <yselkowi@redhat.com> | 2017-12-03 21:12:33 -0600 |
---|---|---|
committer | Yaakov Selkowitz <yselkowi@redhat.com> | 2018-01-17 11:47:20 -0600 |
commit | 67ee0cac4cfc1a0a5b4f1403584ef8222ee5a110 (patch) | |
tree | d2e79b5cfa668067440dab055e0e2b6984687628 /newlib/libc/sys/linux | |
parent | fff27f84298c8ae64879e143b068c3b2e6a11ba4 (diff) | |
download | newlib-67ee0cac4cfc1a0a5b4f1403584ef8222ee5a110.zip newlib-67ee0cac4cfc1a0a5b4f1403584ef8222ee5a110.tar.gz newlib-67ee0cac4cfc1a0a5b4f1403584ef8222ee5a110.tar.bz2 |
ansification: remove _VOID
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
Diffstat (limited to 'newlib/libc/sys/linux')
-rw-r--r-- | newlib/libc/sys/linux/include/time.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/newlib/libc/sys/linux/include/time.h b/newlib/libc/sys/linux/include/time.h index 64ade94..e545676 100644 --- a/newlib/libc/sys/linux/include/time.h +++ b/newlib/libc/sys/linux/include/time.h @@ -81,8 +81,8 @@ struct tm *_EXFUN(localtime_r, (const time_t *, struct tm *)); #ifndef __STRICT_ANSI__ char *_EXFUN(strptime, (const char *, const char *, struct tm *)); -_VOID _EXFUN(tzset, (_VOID)); -_VOID _EXFUN(_tzset_r, (struct _reent *)); +void _EXFUN(tzset, (void)); +void _EXFUN(_tzset_r, (struct _reent *)); typedef struct __tzrule_struct { @@ -102,13 +102,13 @@ typedef struct __tzinfo_struct __tzrule_type __tzrule[2]; } __tzinfo_type; -__tzinfo_type *_EXFUN (__gettzinfo, (_VOID)); +__tzinfo_type *_EXFUN (__gettzinfo, (void)); /* getdate functions */ #ifndef _REENT_ONLY #define getdate_err (*__getdate_err()) -int *_EXFUN(__getdate_err,(_VOID)); +int *_EXFUN(__getdate_err,(void)); struct tm * _EXFUN(getdate, (const char *)); /* getdate_err is set to one of the following values to indicate the error. |