repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang-format] Fix a bug in aligning comments above PPDirective (#72791)
[llvm-project.git]
/
clang
/
test
/
Headers
/
Inputs
/
include
/
stdint.h
blob
5bf26a7b67b066aa7990b5f8779da2ba1eedfd0c
1
#ifndef STDINT_H
2
#define STDINT_H
3
4
#ifdef __INT32_TYPE__
5
typedef
unsigned
__INT32_TYPE__
uint32_t
;
6
#endif
7
8
#ifdef __INT64_TYPE__
9
typedef
unsigned
__INT64_TYPE__
uint64_t
;
10
#endif
11
12
#ifdef __INTPTR_TYPE__
13
typedef
__INTPTR_TYPE__
intptr_t
;
14
typedef
unsigned
__INTPTR_TYPE__
uintptr_t
;
15
#else
16
#error Every target should have __INTPTR_TYPE__
17
#endif
18
19
#endif
/* STDINT_H */