import -ko -b 1.1.3 XEmacs XEmacs-21_2 r21-2-35
[chise/xemacs-chise.git.1] / src / syspwd.h
index 510234e..e3698ce 100644 (file)
@@ -19,5 +19,21 @@ Boston, MA 02111-1307, USA.  */
 
 /* Synched up with: Not really in FSF. */
 
-#include <pwd.h>
+#ifndef WIN32_NATIVE
 
+# include <pwd.h>
+
+#else /* WIN32_NATIVE */
+
+struct passwd {
+    char *pw_name;
+    char *pw_passwd;
+    int   pw_uid;
+    int   pw_gid;
+    int   pw_quota;
+    char *pw_gecos;
+    char *pw_dir;
+    char *pw_shell;
+};
+
+#endif /* WIN32_NATIVE */