You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
365 B
16 lines
365 B
#if !defined(spp_stdint_h_guard)
|
|
#define spp_stdint_h_guard
|
|
|
|
#include <sparsepp/spp_config.h>
|
|
|
|
#if defined(SPP_HAS_CSTDINT) && (__cplusplus >= 201103)
|
|
#include <cstdint>
|
|
#else
|
|
#if defined(__FreeBSD__) || defined(__IBMCPP__) || defined(_AIX)
|
|
#include <inttypes.h>
|
|
#else
|
|
#include <stdint.h>
|
|
#endif
|
|
#endif
|
|
|
|
#endif // spp_stdint_h_guard
|