Annotate t_verbose()

git-svn-id: svn+ssh://svn.openpam.org/svn/openpam/trunk@559 185d5e19-27fe-0310-9dcf-9bff6b9f3609
This commit is contained in:
Dag-Erling Smørgrav 2012-04-02 22:06:05 +00:00
parent 28f7487e06
commit b99998da9c
1 changed files with 4 additions and 1 deletions

5
t/t.h
View File

@ -30,6 +30,8 @@
#ifndef T_H_INCLUDED
#define T_H_INCLUDED
#include <security/openpam_attr.h>
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