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
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
clang
/
test
/
Headers
/
Inputs
/
include
/
malloc.h
blob
590263bb010a35feabbefa0795730f71e4c64da8
1
#if defined(__MINGW32__)
2
void
*
__mingw_aligned_malloc
(
size_t
,
size_t
);
3
void
__mingw_aligned_free
(
void
*);
4
#elif defined(_WIN32)
5
void
*
_aligned_malloc
(
size_t
,
size_t
);
6
void
_aligned_free
(
void
*);
7
#endif