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: 4bd3b2dac01b885d2c8bff2d0c6264b9416c04da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// 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) {}

void *__gxx_personality_v0;
void *__cxa_allocate_exception;
void *_ZTIi;
void *__cxa_throw;
void *__cxa_begin_catch;
void *__cxa_end_catch;