chiark / gitweb /
volume_id: provide libvolume_id.a file
[elogind.git] / klibc / include / bits32 / bitsize / stdintconst.h
1 /*
2  * bits32/stdintconst.h
3  */
4
5 #ifndef _BITSIZE_STDINTCONST_H
6 #define _BITSIZE_STDINTCONST_H
7
8 #define INT_FAST16_C(c)  INT32_C(c)
9 #define INT_FAST32_C(c)  INT32_C(c)
10
11 #define UINT_FAST16_C(c) UINT32_C(c)
12 #define UINT_FAST32_C(c) UINT32_C(c)
13
14 #define INTPTR_C(c)      INT32_C(c)
15 #define UINTPTR_C(c)     UINT32_C(c)
16 #define PTRDIFF_C(c)     INT32_C(c)
17
18 #endif /* _BITSIZE_STDINTCONST_H */