added ifdef vxWorks

This commit is contained in:
Janet B. Anderson
1992-02-20 13:04:29 +00:00
parent 7dafbc4d99
commit 1c7f79dd02
2 changed files with 16 additions and 2 deletions

View File

@@ -57,6 +57,7 @@
* .21 12-14-90 lrd fixed post events for the variables
* .22 03-15-91 mrk moved code from calcRecord to here
* .23 08-01-91 rac don't use FETCH_G ... for V2
* .24 02-20-92 rcz fixed for vxWorks build
*/
/* This module contains the code for processing the arithmetic
@@ -83,7 +84,13 @@
* double value between 0.00 and 1.00
*/
#include <stdio.h>
#ifdef vxWorks
# include <stdioLib.h>
extern int printf();
#else
# include <stdio.h>
#endif
#include <dbDefs.h>
#include <post.h>
#include <math.h>

View File

@@ -57,6 +57,7 @@
* .21 12-14-90 lrd fixed post events for the variables
* .22 03-15-91 mrk moved code from calcRecord to here
* .23 08-01-91 rac don't use FETCH_G ... for V2
* .24 02-20-92 rcz fixed for vxWorks build
*/
/* This module contains the code for processing the arithmetic
@@ -83,7 +84,13 @@
* double value between 0.00 and 1.00
*/
#include <stdio.h>
#ifdef vxWorks
# include <stdioLib.h>
extern int printf();
#else
# include <stdio.h>
#endif
#include <dbDefs.h>
#include <post.h>
#include <math.h>