From 4a1612e13345f9adff02621968d8cd638da9acff Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Wed, 18 Feb 2004 22:24:42 +0000 Subject: [PATCH] fixed win32 dll export warnings --- src/iocsh/systemCommandRegister.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/iocsh/systemCommandRegister.c b/src/iocsh/systemCommandRegister.c index 222d934c2..c7016ed77 100644 --- a/src/iocsh/systemCommandRegister.c +++ b/src/iocsh/systemCommandRegister.c @@ -16,9 +16,11 @@ */ #include #include -#include #include +#define epicsExportSharedSymbols +#include + /* system */ static const iocshArg systemArg0 = { "command string",iocshArgString}; static const iocshArg * const systemArgs[1] = {&systemArg0};