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

stub.h « Inputs « test « bolt - github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5c5b5d1f876a98c10b079a5eafb7f2729bbf0fdb (plain)
1
2
3
4
5
6
7
8
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