diff options
Diffstat (limited to 'streams')
-rw-r--r-- | streams/getpmsg.c | 8 | ||||
-rw-r--r-- | streams/putmsg.c | 7 | ||||
-rw-r--r-- | streams/putpmsg.c | 8 |
3 files changed, 6 insertions, 17 deletions
diff --git a/streams/getpmsg.c b/streams/getpmsg.c index 7e8c872423..f3cba36cc4 100644 --- a/streams/getpmsg.c +++ b/streams/getpmsg.c @@ -19,12 +19,8 @@ #include <stropts.h> int -getpmsg (fildes, ctlptr, dataptr, bandp, flagsp) - int fildes; - struct strbuf *ctlptr; - struct strbuf *dataptr; - int *bandp; - int *flagsp; +getpmsg (int fildes, struct strbuf *ctlptr, struct strbuf *dataptr, int *bandp, + int *flagsp) { __set_errno (ENOSYS); return -1; diff --git a/streams/putmsg.c b/streams/putmsg.c index 9197f7e483..03c69979ec 100644 --- a/streams/putmsg.c +++ b/streams/putmsg.c @@ -19,11 +19,8 @@ #include <stropts.h> int -putmsg (fildes, ctlptr, dataptr, flags) - int fildes; - const struct strbuf *ctlptr; - const struct strbuf *dataptr; - int flags; +putmsg (int fildes, const struct strbuf *ctlptr, const struct strbuf *dataptr, + int flags) { __set_errno (ENOSYS); return -1; diff --git a/streams/putpmsg.c b/streams/putpmsg.c index e9fbd0f41a..c54b6f7afa 100644 --- a/streams/putpmsg.c +++ b/streams/putpmsg.c @@ -19,12 +19,8 @@ #include <stropts.h> int -putpmsg (fildes, ctlptr, dataptr, band, flags) - int fildes; - const struct strbuf *ctlptr; - const struct strbuf *dataptr; - int band; - int flags; +putpmsg (int fildes, const struct strbuf *ctlptr, const struct strbuf *dataptr, + int band, int flags) { __set_errno (ENOSYS); return -1; |