From adef6792e37be888c1716de1aca6ae811244ebab Mon Sep 17 00:00:00 2001 From: torset Date: Fri, 9 Jan 2009 13:25:43 +0000 Subject: Change in isempty because of the change of find --- src/auxiliaryFunctions/isempty/disemptya.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/auxiliaryFunctions/isempty/disemptya.c') diff --git a/src/auxiliaryFunctions/isempty/disemptya.c b/src/auxiliaryFunctions/isempty/disemptya.c index c4e76f9a..ce5e3f36 100644 --- a/src/auxiliaryFunctions/isempty/disemptya.c +++ b/src/auxiliaryFunctions/isempty/disemptya.c @@ -12,9 +12,9 @@ #include "isempty.h" -bool disemptya(double* x, int size) { +double disemptya(double* x, int size) { if (dfinda(x, size) == NULL) { - return true; + return 1; } - return false; + return 0; } -- cgit