ed8addadcb693d67656496b1d1d6d7a46a552129
[libc-test] / common / test.h
1 /* use it in test_ functions */
2 #define error(...) error__(__FILE__, __LINE__, __VA_ARGS__)
3 void error__(const char *n, int l, const char *s, ...);
4
5 /* use it in bench_ functions */
6 extern int N;
7 void start_timer(void);
8 void stop_timer(void);
9 void reset_timer(void);