bench: pass N as argument, update readme
[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 void start_timer(void);
7 void stop_timer(void);
8 void reset_timer(void);