]> git.cameronkatri.com Git - pw-darwin.git/blobdiff - pw/pw.h
Perform a major cleanup of the usr.sbin Makefiles.
[pw-darwin.git] / pw / pw.h
diff --git a/pw/pw.h b/pw/pw.h
index 771803965fa9909951e055d62a24b022326559f8..f541b26e1743c56719e79f31e5f5d5e348bb924f 100644 (file)
--- a/pw/pw.h
+++ b/pw/pw.h
@@ -66,10 +66,10 @@ struct carg
 {
        int               ch;
        char              *val;
-       LIST_ENTRY(struct carg)  list;
+       LIST_ENTRY(carg)  list;
 };
 
-extern LIST_HEAD(cargs, struct carg) arglist;
+extern LIST_HEAD(cargs, carg) arglist;
 
 struct userconf
 {
@@ -124,7 +124,7 @@ int boolean_val(char const * str, int dflt);
 char const *boolean_str(int val);
 char *newstr(char const * p);
 
-void pw_log(struct userconf * cnf, int mode, int which, char const * fmt,...);
+void pw_log(struct userconf * cnf, int mode, int which, char const * fmt,...) __printflike(4, 5);
 char *pw_pwcrypt(char *password);
 
 extern const char *Modes[];