blob: ad33aa3587f28d2f538cfd90dc152cf0892abc36 [file] [log] [blame]
#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);
int puts(const char *s);
int rand(void);
#endif