diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2009-07-01 19:11:17 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2009-07-01 19:11:17 +0000 |
commit | 6cb9c6d36f17c964a7e5b56c5452178f0e3abdb4 (patch) | |
tree | 88fe4f534351b5c93a74ef479771fe1acac3e764 /slirp/sbuf.h | |
parent | 22d091b38d30cc22b923daca8cf0f0c0cffadcd7 (diff) | |
download | qemu-6cb9c6d36f17c964a7e5b56c5452178f0e3abdb4.tar.gz qemu-6cb9c6d36f17c964a7e5b56c5452178f0e3abdb4.tar.bz2 qemu-6cb9c6d36f17c964a7e5b56c5452178f0e3abdb4.zip |
Fix breakage by obsolete _P() for good
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
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 a4f103623a..4f22e7c388 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 |