summaryrefslogtreecommitdiff
path: root/hack/asm-generic/types.h
blob: ae07283d099f9607d960eb64c56eededd399b830 (plain)
1
2
3
4
5
6
7
8
9
/* Override Linux' (4.16.1) <asm-generic/types.h> to agree with GNU
 * libc's (2.27) <bits/types.h> so that we can use Linux' __u64 and
 * __s64 with libc's PRIu64 and PRUi64.  */

#if __WORDSIZE == 64
# include <asm-generic/int-l64.h>
#else
# include <asm-generic/int-ll64.h>
#endif