diff options
Diffstat (limited to 'slirp/sbuf.h')
-rw-r--r-- | slirp/sbuf.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/slirp/sbuf.h b/slirp/sbuf.h index a4f1036..4f22e7c 100644 --- a/slirp/sbuf.h +++ b/slirp/sbuf.h @@ -21,10 +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 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 |