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

This commit is contained in:
Timo Kreuzer 2019-02-03 18:04:03 +01:00
parent afe203a1a5
commit 68abf035c6

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")))