Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'bolt/test/Inputs/stub.h')
-rw-r--r--bolt/test/Inputs/stub.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/bolt/test/Inputs/stub.h b/bolt/test/Inputs/stub.h
new file mode 100644
index 000000000000..5c5b5d1f876a
--- /dev/null
+++ b/bolt/test/Inputs/stub.h
@@ -0,0 +1,9 @@
+#ifndef BOLT_TEST_STUB_H
+#define BOLT_TEST_STUB_H
+
+void *memcpy(void *dest, const void *src, unsigned long n);
+void *memset(void *dest, int c, unsigned long n);
+int printf(const char *format, ...);
+void exit(int status);
+
+#endif