Removed the worker function pointer typedef from the public API

This commit is contained in:
Snaipe 2015-11-27 14:21:50 +01:00
parent 5fddb5a0c8
commit d25ea68eb1
2 changed files with 2 additions and 2 deletions

View file

@ -123,6 +123,4 @@ struct criterion_test_set {
size_t tests;
};
typedef void (*cr_worker_func)(struct criterion_test *, struct criterion_suite *);
#endif /* !CRITERION_TYPES_H_ */

View file

@ -27,6 +27,8 @@
# include "criterion/types.h"
# include "internal.h"
typedef void (*cr_worker_func)(struct criterion_test *, struct criterion_suite *);
struct proc_handle {
#ifdef VANILLA_WIN32
HANDLE handle;