diff options
author | Angelo Mantellini <angelo.mantellini@irt-systemx.fr> | 2018-01-22 16:43:17 +0100 |
---|---|---|
committer | Angelo Mantellini <angelo.mantellini@irt-systemx.fr> | 2018-01-22 16:43:17 +0100 |
commit | d05dd3d6d6dc8766a0f9423364434d4ae5997ffb (patch) | |
tree | 9a4f4590dd5e446e760f08f9e78eccc434d6963f | |
parent | 2f4dbb6aea63bcd289d35dca65c5a4037549bdd1 (diff) |
correct __ANDROID__ define
Change-Id: Ic6138edfdd8e13ed525c12327111d48d6e008166
Signed-off-by: Angelo Mantellini <angelo.mantellini@irt-systemx.fr>
-rwxr-xr-x | longbow/src/LongBow/longBow_EventType.c | 2 |
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); |