1 | #ifndef BOLT_TEST_STUB_H |
---|---|
2 | #define BOLT_TEST_STUB_H |
3 | |
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); |
10 | |
11 | #endif |
12 |