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

stub.c « Inputs « test « bolt - github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1e84e8989490e0941a1d96e671ce225423f2b18e (plain)
1
2
3
4
5
6
// The stub symbols library used for testing purposes

void *memcpy(void *dest, const void *src, unsigned long n) { return 0; }
void *memset(void *dest, int c, unsigned long n) { return 0; }
int printf(const char *format, ...) { return 0; }
void exit(int status) {}