diff options
Diffstat (limited to 'src/utmpx')
-rw-r--r-- | src/utmpx/endutxent.c | 5 | ||||
-rw-r--r-- | src/utmpx/getutxent.c | 5 | ||||
-rw-r--r-- | src/utmpx/getutxid.c | 5 | ||||
-rw-r--r-- | src/utmpx/getutxline.c | 5 | ||||
-rw-r--r-- | src/utmpx/pututxline.c | 5 | ||||
-rw-r--r-- | src/utmpx/setutxent.c | 5 |
6 files changed, 30 insertions, 0 deletions
diff --git a/src/utmpx/endutxent.c b/src/utmpx/endutxent.c index f35dda04..2132beda 100644 --- a/src/utmpx/endutxent.c +++ b/src/utmpx/endutxent.c @@ -1,3 +1,5 @@ +#if 0 + #include <utmpx.h> void endutxent(void) @@ -7,3 +9,6 @@ void endutxent(void) /* XOPEN(400) */ + + +#endif diff --git a/src/utmpx/getutxent.c b/src/utmpx/getutxent.c index 815b735f..10fbb35d 100644 --- a/src/utmpx/getutxent.c +++ b/src/utmpx/getutxent.c @@ -1,3 +1,5 @@ +#if 0 + #include <utmpx.h> #include <stddef.h> @@ -9,3 +11,6 @@ struct utmpx * getutxent(void) /* XOPEN(400) */ + + +#endif diff --git a/src/utmpx/getutxid.c b/src/utmpx/getutxid.c index 9a7690a1..7177931c 100644 --- a/src/utmpx/getutxid.c +++ b/src/utmpx/getutxid.c @@ -1,3 +1,5 @@ +#if 0 + #include <utmpx.h> #include <stddef.h> @@ -9,3 +11,6 @@ struct utmpx * getutxid(const struct utmpx *id) /* XOPEN(400) */ + + +#endif diff --git a/src/utmpx/getutxline.c b/src/utmpx/getutxline.c index ceed9b1e..ef420f5c 100644 --- a/src/utmpx/getutxline.c +++ b/src/utmpx/getutxline.c @@ -1,3 +1,5 @@ +#if 0 + #include <utmpx.h> #include <stddef.h> @@ -9,3 +11,6 @@ struct utmpx * getutxline(const struct utmpx *line) /* XOPEN(400) */ + + +#endif diff --git a/src/utmpx/pututxline.c b/src/utmpx/pututxline.c index 43e5ecc7..5dcf31d2 100644 --- a/src/utmpx/pututxline.c +++ b/src/utmpx/pututxline.c @@ -1,3 +1,5 @@ +#if 0 + #include <utmpx.h> #include <stddef.h> @@ -9,3 +11,6 @@ struct utmpx * pututxline(const struct utmpx *utmpx) /* XOPEN(400) */ + + +#endif diff --git a/src/utmpx/setutxent.c b/src/utmpx/setutxent.c index 405d77cc..4908065b 100644 --- a/src/utmpx/setutxent.c +++ b/src/utmpx/setutxent.c @@ -1,3 +1,5 @@ +#if 0 + #include <utmpx.h> void setutxent(void) @@ -7,3 +9,6 @@ void setutxent(void) /* XOPEN(400) */ + + +#endif |