summaryrefslogtreecommitdiff
path: root/src/pwd
diff options
context:
space:
mode:
Diffstat (limited to 'src/pwd')
-rw-r--r--src/pwd/__pwd.c5
-rw-r--r--src/pwd/endpwent.c5
-rw-r--r--src/pwd/getpwent.c5
-rw-r--r--src/pwd/getpwnam.c5
-rw-r--r--src/pwd/getpwuid.c5
-rw-r--r--src/pwd/setpwent.c5
-rw-r--r--src/pwd/struct_passwd.c5
7 files changed, 35 insertions, 0 deletions
diff --git a/src/pwd/__pwd.c b/src/pwd/__pwd.c
index c6fb7787..be407735 100644
--- a/src/pwd/__pwd.c
+++ b/src/pwd/__pwd.c
@@ -1,3 +1,5 @@
+#if 0
+
#include "_pwd.h"
#ifndef _XOPEN_SOURCE
@@ -16,3 +18,6 @@ struct __pwd __pwd =
/*
POSIX(1)
*/
+
+
+#endif
diff --git a/src/pwd/endpwent.c b/src/pwd/endpwent.c
index bb22e1be..9241c01c 100644
--- a/src/pwd/endpwent.c
+++ b/src/pwd/endpwent.c
@@ -1,3 +1,5 @@
+#if 0
+
#include <pwd.h>
#include <stdio.h>
#include "_pwd.h"
@@ -13,3 +15,6 @@ void endpwent(void)
/*
XOPEN(400)
*/
+
+
+#endif
diff --git a/src/pwd/getpwent.c b/src/pwd/getpwent.c
index 9876fcd5..72e15109 100644
--- a/src/pwd/getpwent.c
+++ b/src/pwd/getpwent.c
@@ -1,3 +1,5 @@
+#if 0
+
#if ((!defined _POSIX_C_SOURCE) || (_POSIX_C_SOURCE < 2))
#undef _POSIX_C_SOURCE
#define _POSIX_C_SOURCE 2
@@ -97,3 +99,6 @@ struct passwd * getpwent(void)
/*
XOPEN(400)
*/
+
+
+#endif
diff --git a/src/pwd/getpwnam.c b/src/pwd/getpwnam.c
index f880aedc..14ba3690 100644
--- a/src/pwd/getpwnam.c
+++ b/src/pwd/getpwnam.c
@@ -1,3 +1,5 @@
+#if 0
+
#include <sys/types.h>
#include <pwd.h>
#include <string.h>
@@ -22,3 +24,6 @@ struct passwd * getpwnam(const char * name)
/*
POSIX(1)
*/
+
+
+#endif
diff --git a/src/pwd/getpwuid.c b/src/pwd/getpwuid.c
index 29982a2c..7c8eaadf 100644
--- a/src/pwd/getpwuid.c
+++ b/src/pwd/getpwuid.c
@@ -1,3 +1,5 @@
+#if 0
+
#include <sys/types.h>
#include <pwd.h>
#include "_pwd.h"
@@ -21,3 +23,6 @@ struct passwd * getpwuid(uid_t uid)
/*
POSIX(1)
*/
+
+
+#endif
diff --git a/src/pwd/setpwent.c b/src/pwd/setpwent.c
index 93fecdf5..1b7a304b 100644
--- a/src/pwd/setpwent.c
+++ b/src/pwd/setpwent.c
@@ -1,3 +1,5 @@
+#if 0
+
#include <pwd.h>
#include <stdio.h>
#include "_pwd.h"
@@ -12,3 +14,6 @@ void setpwent(void)
/*
XOPEN(400)
*/
+
+
+#endif
diff --git a/src/pwd/struct_passwd.c b/src/pwd/struct_passwd.c
index d77dd7b7..71ae8ab6 100644
--- a/src/pwd/struct_passwd.c
+++ b/src/pwd/struct_passwd.c
@@ -1,3 +1,5 @@
+#if 0
+
#include <pwd.h>
struct passwd {
@@ -11,3 +13,6 @@ struct passwd {
/*
POSIX(1)
*/
+
+
+#endif