mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 21:36:11 +00:00
[NDK] Fix INIT_SECTION for Clang (use the GCC definition)
This commit is contained in:
parent
afe203a1a5
commit
68abf035c6
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ Author:
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#ifdef __GNUC__
|
#if defined(__GNUC__) || defined(__clang__)
|
||||||
|
|
||||||
#define INIT_SECTION __attribute__((section ("INIT")))
|
#define INIT_SECTION __attribute__((section ("INIT")))
|
||||||
#define INIT_FUNCTION __attribute__((section ("INIT")))
|
#define INIT_FUNCTION __attribute__((section ("INIT")))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue