From 5506587d06e408a9a2c77a32d9f91845a821fd4b Mon Sep 17 00:00:00 2001 From: "Janet B. Anderson" Date: Mon, 12 Dec 2005 21:26:01 +0000 Subject: [PATCH] Removed epicsShareAPI where not needed. --- src/libCom/osi/epicsStdio.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libCom/osi/epicsStdio.h b/src/libCom/osi/epicsStdio.h index e0396dc39..a6347032c 100644 --- a/src/libCom/osi/epicsStdio.h +++ b/src/libCom/osi/epicsStdio.h @@ -41,7 +41,7 @@ epicsShareFunc FILE * epicsShareAPI epicsTempFile (); * TF_ERROR if the file could not be truncated. */ enum TF_RETURN {TF_OK=0, TF_ERROR=1}; -epicsShareFunc enum TF_RETURN epicsShareAPI truncateFile ( const char *pFileName, unsigned size ); +epicsShareFunc enum TF_RETURN truncateFile ( const char *pFileName, unsigned size ); /* The following are for redirecting stdin,stdout,stderr */ epicsShareFunc FILE * epicsShareAPI epicsGetStdin(void);