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]
/
bolt
/
test
/
Inputs
/
stub.h
blob
ad33aa3587f28d2f538cfd90dc152cf0892abc36
1
#ifndef BOLT_TEST_STUB_H
2
#define BOLT_TEST_STUB_H
3
4
void
*
memcpy
(
void
*
dest
,
const void
*
src
,
unsigned long
n
);
5
void
*
memset
(
void
*
dest
,
int
c
,
unsigned long
n
);
6
int
printf
(
const char
*
format
, ...);
7
void
exit
(
int
status
);
8
int
puts
(
const char
*
s
);
9
int
rand
(
void
);
10
11
#endif