fix: stdint.h is not available before vw6.9

This commit is contained in:
DW
2025-04-18 09:24:43 +09:00
committed by mdavidsaver
parent 280aa0b399
commit a2e01c2929

View File

@@ -9,7 +9,14 @@
#include <set>
#include <map>
#if defined(vxWorks) && \
(_WRS_VXWORKS_MAJOR+0 <= 6) && (_WRS_VXWORKS_MINOR+0 < 9)
typedef int intptr_t;
typedef unsigned int uintptr_t;
#else
#include <stdint.h>
#endif
#include <string.h>
#define EPICS_PRIVATE_API