Loading...
include/pwd.h Libc-320.1.3 Libc-262.3.2
--- Libc/Libc-320.1.3/include/pwd.h
+++ Libc/Libc-262.3.2/include/pwd.h
@@ -2,6 +2,8 @@
  * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
  *
  * @APPLE_LICENSE_HEADER_START@
+ * 
+ * Copyright (c) 1999-2003 Apple Computer, Inc.  All Rights Reserved.
  * 
  * This file contains Original Code and/or Modifications of Original Code
  * as defined in and that are subject to the Apple Public Source License
@@ -112,18 +114,17 @@
 #include <sys/cdefs.h>
 
 __BEGIN_DECLS
-struct passwd	*getpwuid(uid_t);
-struct passwd	*getpwnam(const char *);
-int		 getpwuid_r(uid_t, struct passwd *, char *, size_t, struct passwd **);
-int		 getpwnam_r(const char *, struct passwd *, char *, size_t, struct passwd **);
+struct passwd	*getpwuid __P((uid_t));
+struct passwd	*getpwnam __P((const char *));
+int		 getpwuid_r __P((uid_t, struct passwd *, char *, size_t, struct passwd **));
+int		 getpwnam_r __P((const char *, struct passwd *, char *, size_t, struct passwd **));
 #ifndef _POSIX_SOURCE
-struct passwd	*getpwent(void);
+struct passwd	*getpwent __P((void));
 #ifndef _XOPEN_SOURCE
-int		 setpassent(int);
-char 		*user_from_uid(uid_t, int);
+int		 setpassent __P((int));
 #endif
-int		 setpwent(void);
-void		 endpwent(void);
+int		 setpwent __P((void));
+void		 endpwent __P((void));
 #endif
 __END_DECLS