cdds-util 0.1.1

Cyclone DDS and some cyclone utils low-level Rust bindings.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#ifndef DDSRT_FIXUP_STDINT_H
#define DDSRT_FIXUP_STDINT_H

#include <sys/int_types.h>
#include <limits.h>

#ifndef UINT32_C
#define UINT32_C(v)  (v ## U)
#endif

#endif /* DDSRT_FIXUP_STDINT_H */