diff options
Diffstat (limited to 'winsup/cygwin/include/cygwin/config.h')
-rw-r--r-- | winsup/cygwin/include/cygwin/config.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/winsup/cygwin/include/cygwin/config.h b/winsup/cygwin/include/cygwin/config.h index f887bac15..da82c1dec 100644 --- a/winsup/cygwin/include/cygwin/config.h +++ b/winsup/cygwin/include/cygwin/config.h @@ -4,7 +4,7 @@ sys/config.h before. This way we can manaage our configuration setting without bothering newlib. - Copyright 2003 Red Hat, Inc. + Copyright 2003, 2007, 2008, 2009 Red Hat, Inc. Written by C. Vinschen. This file is part of Cygwin. @@ -56,8 +56,10 @@ extern char *_tlsbase __asm__ ("%fs:4"); #define __USE_INTERNAL_STAT64 1 #endif #if defined(__INSIDE_CYGWIN__) || defined(_COMPILING_NEWLIB) +#define __EXPORT __declspec(dllexport) #define __IMPORT #else +#define __EXPORT #define __IMPORT __declspec(dllimport) #endif |