• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // bindgen-flags: --clang-macro-fallback
2 
3 #ifndef ISSUE_753_H
4 #define ISSUE_753_H
5 
6 #define UINT32_C(c) c ## U
7 
8 #define CONST UINT32_C(5)
9 #define OTHER_CONST UINT32_C(6)
10 #define LARGE_CONST UINT32_C(6 << 8)
11 
12 #endif
13