Merge pull request #406 from adierking/printflike

dispatch_c99: remove unnecessary __printflike() definition
diff --git a/tests/dispatch_c99.c b/tests/dispatch_c99.c
index a4531e3..0de3e1f 100644
--- a/tests/dispatch_c99.c
+++ b/tests/dispatch_c99.c
@@ -21,14 +21,6 @@
 #include <dispatch/dispatch.h>
 #include <stdlib.h>
 
-#ifdef __linux__
-// On Linux normally comes from libbsd overlay files,
-// but the headers are not c99 compliant so we compile
-// this test case without $(BSD_OVERLAY_CFLAGS)
-#define __printflike(a,b) __attribute__((format(printf, a, b)))
-#include <inttypes.h>
-#endif
-
 #include <bsdtests.h>
 #include "dispatch_test.h"