diff options
author | Jakob Kaivo <jkk@ung.org> | 2023-11-14 12:12:10 -0500 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2023-11-14 12:12:10 -0500 |
commit | 920746cbb5d18d8aef284d3fe71a57cd52509117 (patch) | |
tree | 11b4436a58c077f36b1236f0c702af00c763e3f6 /src/stropts | |
parent | f23336fbc3148105c42eebfa44a22d1164828108 (diff) |
disable all functions; will strategically reenable them as tested
Diffstat (limited to 'src/stropts')
-rw-r--r-- | src/stropts/fattach.c | 5 | ||||
-rw-r--r-- | src/stropts/fdetach.c | 5 | ||||
-rw-r--r-- | src/stropts/getmsg.c | 5 | ||||
-rw-r--r-- | src/stropts/getpmsg.c | 5 | ||||
-rw-r--r-- | src/stropts/ioctl.c | 5 | ||||
-rw-r--r-- | src/stropts/isastream.c | 5 | ||||
-rw-r--r-- | src/stropts/putmsg.c | 5 | ||||
-rw-r--r-- | src/stropts/putpmsg.c | 5 |
8 files changed, 40 insertions, 0 deletions
diff --git a/src/stropts/fattach.c b/src/stropts/fattach.c index 471932c4..f407f636 100644 --- a/src/stropts/fattach.c +++ b/src/stropts/fattach.c @@ -1,3 +1,5 @@ +#if 0 + #include <stropts.h> int fattach(int fildes, const char * path ) @@ -7,3 +9,6 @@ int fattach(int fildes, const char * path ) /* XOPEN(400) */ + + +#endif diff --git a/src/stropts/fdetach.c b/src/stropts/fdetach.c index 6404ad98..1917f91b 100644 --- a/src/stropts/fdetach.c +++ b/src/stropts/fdetach.c @@ -1,3 +1,5 @@ +#if 0 + #include <stropts.h> int fdetach(const char * path ) @@ -7,3 +9,6 @@ int fdetach(const char * path ) /* XOPEN(400) */ + + +#endif diff --git a/src/stropts/getmsg.c b/src/stropts/getmsg.c index 567a9ef6..7596d550 100644 --- a/src/stropts/getmsg.c +++ b/src/stropts/getmsg.c @@ -1,3 +1,5 @@ +#if 0 + #include <stropts.h> int getmsg(int fd , struct strbuf * ctlptr , struct strbuf * dataptr , int * flagsp ) @@ -7,3 +9,6 @@ int getmsg(int fd , struct strbuf * ctlptr , struct strbuf * dataptr , int * fla /* XOPEN(400) */ + + +#endif diff --git a/src/stropts/getpmsg.c b/src/stropts/getpmsg.c index c7774e90..39147cc0 100644 --- a/src/stropts/getpmsg.c +++ b/src/stropts/getpmsg.c @@ -1,3 +1,5 @@ +#if 0 + #include <stropts.h> int getpmsg(int fd , struct strbuf * ctlptr , struct strbuf * dataptr , int * bandp , int * flagsp ) @@ -7,3 +9,6 @@ int getpmsg(int fd , struct strbuf * ctlptr , struct strbuf * dataptr , int * ba /* XOPEN(400) */ + + +#endif diff --git a/src/stropts/ioctl.c b/src/stropts/ioctl.c index 57c8b4cc..af0ab043 100644 --- a/src/stropts/ioctl.c +++ b/src/stropts/ioctl.c @@ -1,3 +1,5 @@ +#if 0 + #include <stropts.h> int ioctl(int fildes , int request , ... ) @@ -7,3 +9,6 @@ int ioctl(int fildes , int request , ... ) /* XOPEN(400) */ + + +#endif diff --git a/src/stropts/isastream.c b/src/stropts/isastream.c index f68d2c6b..d52a1fca 100644 --- a/src/stropts/isastream.c +++ b/src/stropts/isastream.c @@ -1,3 +1,5 @@ +#if 0 + #include <stropts.h> int isastream(int fildes ) @@ -7,3 +9,6 @@ int isastream(int fildes ) /* XOPEN(400) */ + + +#endif diff --git a/src/stropts/putmsg.c b/src/stropts/putmsg.c index c9388ce5..ba2e5893 100644 --- a/src/stropts/putmsg.c +++ b/src/stropts/putmsg.c @@ -1,3 +1,5 @@ +#if 0 + #include <stropts.h> int putmsg(int fd , const struct strbuf * ctlptr , const struct strbuf * dataptr , int flags ) @@ -7,3 +9,6 @@ int putmsg(int fd , const struct strbuf * ctlptr , const struct strbuf * dataptr /* XOPEN(400) */ + + +#endif diff --git a/src/stropts/putpmsg.c b/src/stropts/putpmsg.c index 37bda485..4b2813cf 100644 --- a/src/stropts/putpmsg.c +++ b/src/stropts/putpmsg.c @@ -1,3 +1,5 @@ +#if 0 + #include <stropts.h> int putpmsg(int fd , const struct strbuf * ctlptr , const struct strbuf * dataptr , int band , int flags ) @@ -7,3 +9,6 @@ int putpmsg(int fd , const struct strbuf * ctlptr , const struct strbuf * datapt /* XOPEN(400) */ + + +#endif |