As of release 1.5, MIT Kerberos moved krb5.h to krb5/krb5.h. Check both
[obnox/wireshark/wip.git] / cmdarg_err.h
index e50b89a8a53b917263108722de57820f6055bf50..dff2cbbe7011d674e910a4c2b8c38ed82379d56c 100644 (file)
@@ -3,8 +3,8 @@
  *
  * $Id$
  *
- * Ethereal - Network traffic analyzer
- * By Gerald Combs <gerald@ethereal.com>
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
  * Copyright 1998 Gerald Combs
  *
  * This program is free software; you can redistribute it and/or
@@ -32,12 +32,14 @@ extern "C" {
 /*
  * Report an error in command-line arguments.
  */
-extern void cmdarg_err(const char *fmt, ...);
+extern void cmdarg_err(const char *fmt, ...)
+    G_GNUC_PRINTF(1, 2);
 
 /*
  * Report additional information for an error in command-line arguments.
  */
-extern void cmdarg_err_cont(const char *fmt, ...);
+extern void cmdarg_err_cont(const char *fmt, ...)
+    G_GNUC_PRINTF(1, 2);
 
 #ifdef __cplusplus
 }