mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 01:15:09 +00:00
[NTOS:MM][USER32]
- Correctly handle/avoid C99-style inline semantics CORE-11794 svn path=/trunk/; revision=72138
This commit is contained in:
parent
a946a97f6b
commit
0cd0cc28ff
2 changed files with 3 additions and 3 deletions
|
@ -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,
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue