]> git.proxmox.com Git - qemu.git/blobdiff - slirp/sbuf.h
Merge remote-tracking branch 'bonzini/scsi-next' into staging
[qemu.git] / slirp / sbuf.h
index 89c4eb2f1c720cbf556a2340c75344a6421e8709..4f22e7c388da107e49cf15cb21512ba088bd80a1 100644 (file)
@@ -21,11 +21,10 @@ struct sbuf {
        char    *sb_data;       /* Actual data */
 };
 
-void sbfree _P((struct sbuf *));
-void sbdrop _P((struct sbuf *, int));
-void sbreserve _P((struct sbuf *, int));
-void sbappend _P((struct socket *, struct mbuf *));
-void sbappendsb _P((struct sbuf *, struct mbuf *));
-void sbcopy _P((struct sbuf *, int, int, char *));
+void sbfree(struct sbuf *);
+void sbdrop(struct sbuf *, int);
+void sbreserve(struct sbuf *, int);
+void sbappend(struct socket *, struct mbuf *);
+void sbcopy(struct sbuf *, int, int, char *);
 
 #endif