From 2f4dbb6aea63bcd289d35dca65c5a4037549bdd1 Mon Sep 17 00:00:00 2001 From: Angelo Mantellini Date: Mon, 22 Jan 2018 15:57:57 +0100 Subject: correct __ANDROID__ define Change-Id: If05aca95913b0189d232a28eee3afcb205a2b3a2 Signed-off-by: Angelo Mantellini --- longbow/src/LongBow/longBow_TestCase.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'longbow') diff --git a/longbow/src/LongBow/longBow_TestCase.c b/longbow/src/LongBow/longBow_TestCase.c index ca506ae8..3b487905 100644 --- a/longbow/src/LongBow/longBow_TestCase.c +++ b/longbow/src/LongBow/longBow_TestCase.c @@ -475,7 +475,7 @@ _longBowTestCase_RunForked(LongBowTestCase *testCase) // results of the test that was run in a separate process. int waitStatus; struct rusage rusage; -#ifndef _ANDROID_ +#ifndef __ANDROID__ wait3(&waitStatus, 0, &rusage); #else wait4(-1, &waitStatus, 0, &rusage); -- cgit 1.2.3-korg