From a253a0db67f84dd9a3ed5b2d213675669228701e Mon Sep 17 00:00:00 2001 From: "Janet B. Anderson" Date: Thu, 3 Jun 1993 11:38:56 +0000 Subject: [PATCH] Changed to work with vxWorks 5.1 and GCC 2.2.3. --- src/dev/devAiDvx2502.c | 8 ++++---- src/dev/devAiSoft.c | 4 ++-- src/dev/devAiSoftRaw.c | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/dev/devAiDvx2502.c b/src/dev/devAiDvx2502.c index 1fb181ac7..a4cca25d4 100644 --- a/src/dev/devAiDvx2502.c +++ b/src/dev/devAiDvx2502.c @@ -55,10 +55,10 @@ #include #include -long init_record(); -long get_ioint_info(); -long read_ai(); -long special_linconv(); +static long init_record(); +static long get_ioint_info(); +static long read_ai(); +static long special_linconv(); struct { long number; diff --git a/src/dev/devAiSoft.c b/src/dev/devAiSoft.c index f5b6eb9ec..afe8fc45f 100644 --- a/src/dev/devAiSoft.c +++ b/src/dev/devAiSoft.c @@ -56,8 +56,8 @@ long dbCaAddInlink(); long dbCaGetLink(); /* Create the dset for devAiSoft */ -long init_record(); -long read_ai(); +static long init_record(); +static long read_ai(); struct { long number; DEVSUPFUN report; diff --git a/src/dev/devAiSoftRaw.c b/src/dev/devAiSoftRaw.c index f786b6a8b..4f2394945 100644 --- a/src/dev/devAiSoftRaw.c +++ b/src/dev/devAiSoftRaw.c @@ -56,9 +56,9 @@ long dbCaAddInlink(); long dbCaGetLink(); /* Create the dset for devAiSoftRaw */ -long init_record(); -long read_ai(); -long special_linconv(); +static long init_record(); +static long read_ai(); +static long special_linconv(); struct { long number; DEVSUPFUN report;