diff options
author | Steve Hay <steve.m.hay@googlemail.com> | 2011-08-31 18:48:37 +0100 |
---|---|---|
committer | Steve Hay <steve.m.hay@googlemail.com> | 2011-08-31 18:48:37 +0100 |
commit | 925798f29c677c612a63a08a92ebb5f169e27b02 (patch) | |
tree | 1468cfe23a68841be617dba7bd4510250901e964 /win32/config_H.gc | |
parent | 43c6b706eae7899eff9414f3bbb9e5ef095a07fd (diff) | |
download | perl-925798f29c677c612a63a08a92ebb5f169e27b02.tar.gz |
Preliminary cleanup of win32/config*.* prior to updating them fully
- Set lseeksize/lseektype to 4/long in new gc64* files (see f7e8b52a89)
- Add missing NULL parameter in new gc64* files (see e6a0bbf8b4)
- Change new gc64* files to a minimal setup (see d64224560b and 17bdc11416)
- Make the order of the __GNUC__ / _MSC_VER logic consistent
- Add __GNUC__ magic to vc64 (since new gc64* files have _MSC_VER magic)
Diffstat (limited to 'win32/config_H.gc')
-rw-r--r-- | win32/config_H.gc | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/win32/config_H.gc b/win32/config_H.gc index fbf580824e..bd18ffe97b 100644 --- a/win32/config_H.gc +++ b/win32/config_H.gc @@ -3128,12 +3128,11 @@ * static _inline (older MSVC) * static (c89 compilers) */ -#ifdef _MSC_VER -# define HAS_STATIC_INLINE /**/ -# define PERL_STATIC_INLINE static __inline /**/ -#else /* gcc presumably */ -# define HAS_STATIC_INLINE /**/ +#define HAS_STATIC_INLINE /**/ +#ifndef _MSC_VER # define PERL_STATIC_INLINE static __inline__ /**/ +#else +# define PERL_STATIC_INLINE static __inline /**/ #endif /* USE_STDIO_PTR: |