From b99998da9c1b75c4c53ff410f14d90d6f00c549b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dag-Erling=20Sm=C3=B8rgrav?= Date: Mon, 2 Apr 2012 22:06:05 +0000 Subject: [PATCH] Annotate t_verbose() git-svn-id: svn+ssh://svn.openpam.org/svn/openpam/trunk@559 185d5e19-27fe-0310-9dcf-9bff6b9f3609 --- t/t.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/t/t.h b/t/t.h index de113b9..8b1c179 100644 --- a/t/t.h +++ b/t/t.h @@ -30,6 +30,8 @@ #ifndef T_H_INCLUDED #define T_H_INCLUDED +#include + struct t_test { int (*func)(void); const char *desc; @@ -49,6 +51,7 @@ extern const char *t_progname; const struct t_test **t_prepare(int, char **); void t_cleanup(void); -void t_verbose(const char *, ...); +void t_verbose(const char *, ...) + OPENPAM_FORMAT((__printf__, 1, 2)); #endif