[NTOS:MM][USER32]

- Correctly handle/avoid C99-style inline semantics
CORE-11794

svn path=/trunk/; revision=72138
This commit is contained in:
Thomas Faber 2016-08-06 15:04:08 +00:00
parent a946a97f6b
commit 0cd0cc28ff
2 changed files with 3 additions and 3 deletions

View file

@ -16,8 +16,8 @@
#define MODULE_INVOLVED_IN_ARM3
#include <mm/ARM3/miarm.h>
/* GCC's incompetence strikes again */
__inline
static
inline
VOID
sprintf_nt(IN PCHAR Buffer,
IN PCHAR Format,

View file

@ -1,7 +1,7 @@
#pragma once
#if defined(__GNUC__)
#define EXTINLINE extern inline __attribute__((always_inline))
#define EXTINLINE extern inline __attribute__((always_inline)) __attribute__((gnu_inline))
#elif defined(_MSC_VER)
#define EXTINLINE extern __forceinline
#else