lintian doesn't like orphan packages with uploaders...
[debian/amanda] / common-src / packet.h
index f508b3fd6324cc14c37b42229356db9451c37a77..9babbdcf1c4ca31e31b1f0e55f866d2693fb7910 100644 (file)
@@ -1,6 +1,7 @@
 /*
  * Amanda, The Advanced Maryland Automatic Network Disk Archiver
  * Copyright (c) 1991-1999 University of Maryland at College Park
+ * Copyright (c) 2007-2012 Zmanda, Inc.  All Rights Reserved.
  * All Rights Reserved.
  *
  * Permission to use, copy, modify, distribute, and sell this software and its
@@ -42,14 +43,15 @@ typedef struct {
 /*
  * Initialize a packet
  */
+void pkt_init_empty(pkt_t *pkt, pktype_t type);
 void pkt_init(pkt_t *, pktype_t, const char *, ...)
-    __attribute__ ((format (printf, 3, 4)));
+     G_GNUC_PRINTF(3,4);
 
 /*
  * Append data to a packet
  */
 void pkt_cat(pkt_t *, const char *, ...)
-    __attribute__ ((format (printf, 2, 3)));
+     G_GNUC_PRINTF(2,3);
 
 /*
  * Convert the packet type to and from a string