Files
epics-base/modules/libcom/src/osi/os/iOS/epicsMath.h
T
2022-05-11 11:44:00 -07:00

29 lines
698 B
C

/*************************************************************************\
* Copyright (c) 2010 UChicago Argonne LLC, as Operator of Argonne
* 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.
\*************************************************************************/
#ifndef epicsMathh
#define epicsMathh
#include <math.h>
#include <libComAPI.h>
#define finite(x) isfinite(x)
#ifdef __cplusplus
extern "C" {
#endif
LIBCOM_API extern const float epicsNAN;
LIBCOM_API extern const float epicsINF;
#ifdef __cplusplus
}
#endif
#endif /* epicsMathh */