
It is an excellent platform for catching bugs: big-endian, slow enough that a context switch in the middle of an operation becomes a regular occurrence, and all that on a SMP box. Or: I just wanted to see if it would work. Signed-off-by: Erik Boasson <eb@ilities.com>
11 lines
196 B
C
11 lines
196 B
C
#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 */
|