aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAngelo Mantellini <angelo.mantellini@irt-systemx.fr>2018-01-22 16:43:17 +0100
committerAngelo Mantellini <angelo.mantellini@irt-systemx.fr>2018-01-22 16:43:17 +0100
commitd05dd3d6d6dc8766a0f9423364434d4ae5997ffb (patch)
tree9a4f4590dd5e446e760f08f9e78eccc434d6963f
parent2f4dbb6aea63bcd289d35dca65c5a4037549bdd1 (diff)
correct __ANDROID__ define
Change-Id: Ic6138edfdd8e13ed525c12327111d48d6e008166 Signed-off-by: Angelo Mantellini <angelo.mantellini@irt-systemx.fr>
-rwxr-xr-xlongbow/src/LongBow/longBow_EventType.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/longbow/src/LongBow/longBow_EventType.c b/longbow/src/LongBow/longBow_EventType.c
index 7a99b0c3..d1c24620 100755
--- a/longbow/src/LongBow/longBow_EventType.c
+++ b/longbow/src/LongBow/longBow_EventType.c
@@ -129,7 +129,7 @@ LongBowEventType LongBowEventSIGPROF = _eventType("Signal", "SIGPROF", LongBowSt
LongBowEventType LongBowEventSIGWINCH = _eventType("Signal", "SIGWINCH", LongBowStatus_SIGNAL(SIGWINCH), false, false);
-#if (!defined (_ANDROID_) && (!defined(_POSIX_C_SOURCE)) || defined(_DARWIN_C_SOURCE))
+#if (!defined (__ANDROID__) && (!defined(_POSIX_C_SOURCE)) || defined(_DARWIN_C_SOURCE))
LongBowEventType LongBowEventSIGINFO = _eventType("Signal", "SIGINFO", LongBowStatus_SIGNAL(SIGINFO), false, false);
#else
LongBowEventType LongBowEventSIGINFO = _eventType("Signal", "SIGIO", LongBowStatus_SIGNAL(SIGIO), false, false);