[BACK]Return to pwd.h CVS log [TXT][DIR] Up to [local] / src / include

Diff for /src/include/pwd.h between version 1.18 and 1.19

version 1.18, 2005/12/13 00:35:22 version 1.19, 2008/06/24 14:31:59
Line 93 
Line 93 
 __BEGIN_DECLS  __BEGIN_DECLS
 struct passwd   *getpwuid(uid_t);  struct passwd   *getpwuid(uid_t);
 struct passwd   *getpwnam(const char *);  struct passwd   *getpwnam(const char *);
   int             getpwnam_r(const char *, struct passwd *, char *, size_t,
                       struct passwd **result);
   int             getpwuid_r(uid_t uid, struct passwd *, char *buf, size_t buflen,
                       struct passwd **result);
 #if __BSD_VISIBLE || __XPG_VISIBLE  #if __BSD_VISIBLE || __XPG_VISIBLE
 struct passwd   *getpwent(void);  struct passwd   *getpwent(void);
 void             setpwent(void);  void             setpwent(void);

Legend:
Removed from v.1.18  
changed lines
  Added in v.1.19