Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/include/time.h')
-rw-r--r--newlib/libc/include/time.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/newlib/libc/include/time.h b/newlib/libc/include/time.h
index 91616b7f8..d3ced3854 100644
--- a/newlib/libc/include/time.h
+++ b/newlib/libc/include/time.h
@@ -74,9 +74,9 @@ struct tm *_EXFUN(localtime_r, (const time_t *, struct tm *));
#ifdef __CYGWIN__
#ifndef __STRICT_ANSI__
-extern time_t _timezone __declspec(dllimport);
-extern int _daylight __declspec(dllimport);
-extern char *_tzname[2] __declspec(dllimport);
+extern __IMPORT time_t _timezone;
+extern __IMPORT int _daylight;
+extern __IMPORT char *_tzname[2];
char *_EXFUN(timezone, (void));
void _EXFUN(tzset, (void));