Merge Dirk's vxWorks6.3-fix branch

This commit is contained in:
Andrew Johnson
2021-07-02 12:05:31 -05:00
2 changed files with 22 additions and 0 deletions

View File

@@ -21,6 +21,7 @@
#include <fcntl.h>
#include <unistd.h>
#include <loadLib.h>
#include <ioLib.h>
#include "dbmf.h"
#include "epicsString.h"

View File

@@ -0,0 +1,21 @@
/*************************************************************************\
* Copyright (c) 2002 The University of Chicago, as Operator of Argonne
* National Laboratory.
* Copyright (c) 2002 The Regents of the University of California, as
* Operator of Los Alamos National Laboratory.
* SPDX-License-Identifier: EPICS
* EPICS Base is distributed subject to a Software License Agreement found
* in file LICENSE that is included with this distribution.
\*************************************************************************/
/*
* Author Jeffrey O. Hill
* johill@lanl.gov
* 505 665 1831
*/
#include <unistd.h>
/* VxWorks has some functions in ioLib.h instead of unistd.h,
for example close() and read()
*/
#include <ioLib.h>