[NDK] Fix INIT_SECTION for Clang (use the GCC definition)

This commit is contained in:
Timo Kreuzer
2019-02-12 19:31:33 +01:00
parent afe203a1a5
commit 68abf035c6
+1 -1
View File
@@ -18,7 +18,7 @@ Author:
#pragma once
#ifdef __GNUC__
#if defined(__GNUC__) || defined(__clang__)
#define INIT_SECTION __attribute__((section ("INIT")))
#define INIT_FUNCTION __attribute__((section ("INIT")))