Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / bolt / test / Inputs / stub.h
blobad33aa3587f28d2f538cfd90dc152cf0892abc36
1 #ifndef BOLT_TEST_STUB_H
2 #define BOLT_TEST_STUB_H
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);
11 #endif