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

Diff for /src/include/unistd.h between version 1.67 and 1.68

version 1.67, 2012/01/13 13:16:44 version 1.68, 2012/03/21 23:20:35
Line 79 
Line 79 
 int      execle(const char *, const char *, ...);  int      execle(const char *, const char *, ...);
 int      execlp(const char *, const char *, ...)  int      execlp(const char *, const char *, ...)
             __attribute__((sentinel));              __attribute__((sentinel));
 int      execv(const char *, char * const *);  int      execv(const char *, char *const *);
 int      execve(const char *, char * const *, char * const *);  int      execve(const char *, char *const *, char *const *);
 int      execvp(const char *, char * const *);  int      execvp(const char *, char *const *);
   #if __BSD_VISIBLE
   int      execvpe(const char *, char *const *, char *const *);
   #endif
 pid_t    fork(void);  pid_t    fork(void);
 long     fpathconf(int, int);  long     fpathconf(int, int);
 char    *getcwd(char *, size_t)  char    *getcwd(char *, size_t)

Legend:
Removed from v.1.67  
changed lines
  Added in v.1.68