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

Diff for /src/include/unistd.h between version 1.92 and 1.93

version 1.92, 2014/09/01 05:09:52 version 1.93, 2014/09/18 04:37:56
Line 404 
Line 404 
 int      ftruncate(int, off_t);  int      ftruncate(int, off_t);
 int      getlogin_r(char *, size_t)  int      getlogin_r(char *, size_t)
                 __attribute__((__bounded__(__string__,1,2)));                  __attribute__((__bounded__(__string__,1,2)));
   ssize_t  readlink(const char * __restrict, char * __restrict, size_t)
                   __attribute__ ((__bounded__(__string__,2,3)));
 #endif  #endif
 #if __POSIX_VISIBLE >= 199506  #if __POSIX_VISIBLE >= 199506
 int      fdatasync(int);  int      fdatasync(int);
 #endif  #endif
   
 #if __XPG_VISIBLE || __BSD_VISIBLE  #if __XPG_VISIBLE || __BSD_VISIBLE
 #if __BSD_VISIBLE  
 int     crypt_checkpass(const char *, const char *);  
 #endif  
 char    *crypt(const char *, const char *);  char    *crypt(const char *, const char *);
 int      encrypt(char *, int);  int      encrypt(char *, int);
 int      fchdir(int);  int      fchdir(int);
Line 424 
Line 423 
 int      mkstemp(char *);  int      mkstemp(char *);
 char    *mktemp(char *);  char    *mktemp(char *);
 int      nice(int);  int      nice(int);
 ssize_t readlink(const char * __restrict, char * __restrict, size_t)  
                 __attribute__ ((__bounded__(__string__,2,3)));  
 int      setkey(const char *);  int      setkey(const char *);
 int      setpgrp(pid_t pid, pid_t pgrp);        /* obsoleted by setpgid() */  
 int      setregid(gid_t, gid_t);  int      setregid(gid_t, gid_t);
 int      setreuid(uid_t, uid_t);  int      setreuid(uid_t, uid_t);
 void     swab(const void *, void *, size_t);  void     swab(const void *, void *, size_t);
Line 492 
Line 488 
 #if __BSD_VISIBLE  #if __BSD_VISIBLE
 int      acct(const char *);  int      acct(const char *);
 int      closefrom(int);  int      closefrom(int);
   int      crypt_checkpass(const char *, const char *);
 int      des_cipher(const char *, char *, int32_t, int);  int      des_cipher(const char *, char *, int32_t, int);
 int      des_setkey(const char *);  int      des_setkey(const char *);
 void     endusershell(void);  void     endusershell(void);
Line 538 
Line 535 
 int      sethostname(const char *, size_t);  int      sethostname(const char *, size_t);
 int      setlogin(const char *);  int      setlogin(const char *);
 void    *setmode(const char *);  void    *setmode(const char *);
   int      setpgrp(pid_t _pid, pid_t _pgrp);      /* BSD compat version */
 int      setresgid(gid_t, gid_t, gid_t);  int      setresgid(gid_t, gid_t, gid_t);
 int      setresuid(uid_t, uid_t, uid_t);  int      setresuid(uid_t, uid_t, uid_t);
 void     setusershell(void);  void     setusershell(void);

Legend:
Removed from v.1.92  
changed lines
  Added in v.1.93