mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 12:23:31 +00:00
[NTOS:MM][USER32]
- Correctly handle/avoid C99-style inline semantics CORE-11794 svn path=/trunk/; revision=72138
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user