Fixes to allow building on Solaris. Its <cxxx> headers are evidently not

quite drop-in C++ replacements for the <xxx.h> C versions.
This commit is contained in:
Andrew Johnson
2009-06-02 22:31:46 +00:00
parent a052ed56b2
commit 68bdaa899e
2 changed files with 7 additions and 8 deletions

View File

@@ -15,10 +15,10 @@
#include <exception>
#include <typeinfo>
#include <cstdio>
#include <cstddef>
#include <cfloat>
#include <cstring>
#include <stdio.h>
#include <stddef.h>
#include <float.h>
#include <string.h>
#define epicsExportSharedSymbols
#include "epicsAlgorithm.h"

View File

@@ -3,8 +3,7 @@
* National Laboratory.
* Copyright (c) 2002 The Regents of the University of California, as
* Operator of Los Alamos National Laboratory.
* EPICS BASE Versions 3.13.7
* and higher are distributed subject to a Software License Agreement found
* EPICS BASE is distributed subject to a Software License Agreement found
* in file LICENSE that is included with this distribution.
\*************************************************************************/
/*
@@ -14,8 +13,8 @@
* 505 665 1831
*/
#include <cstdio>
#include <cfloat>
#include <stdio.h>
#include <float.h>
#define epicsExportSharedSymbols
#include "epicsGuard.h"