From a7d2571df30c3ec4205e32463a420def08344575 Mon Sep 17 00:00:00 2001 From: zimoch Date: Thu, 21 Jul 2011 14:54:35 +0000 Subject: [PATCH] compatibility to non vxWorks systems --- listRecords.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/listRecords.c b/listRecords.c index 3fe998e..39f3aea 100644 --- a/listRecords.c +++ b/listRecords.c @@ -4,6 +4,7 @@ #include #include +#include #ifdef BASE_VERSION /* This is R3.13 */ @@ -47,6 +48,6 @@ int listRecords(char* file, char* fields) dbl(0L, fields); fclose(newStdout); epicsSetThreadStdout(oldStdout); - return OK; + return 0; #endif }