Deleted Added
full compact
unistd.h (179838) unistd.h (179947)
1/*-
2 * Copyright (c) 1991, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 17 unchanged lines hidden (view full) ---

26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * @(#)unistd.h 8.12 (Berkeley) 4/27/95
1/*-
2 * Copyright (c) 1991, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 17 unchanged lines hidden (view full) ---

26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * @(#)unistd.h 8.12 (Berkeley) 4/27/95
34 * $FreeBSD: head/include/unistd.h 179838 2008-06-17 06:26:29Z davidxu $
34 * $FreeBSD: head/include/unistd.h 179947 2008-06-23 05:22:06Z ed $
35 */
36
37#ifndef _UNISTD_H_
38#define _UNISTD_H_
39
40#include <sys/cdefs.h>
41#include <sys/types.h> /* XXX adds too much pollution. */
42#include <sys/unistd.h>

--- 287 unchanged lines hidden (view full) ---

330int dup2(int, int);
331int eaccess(const char *, int);
332int execl(const char *, const char *, ...);
333int execle(const char *, const char *, ...);
334int execlp(const char *, const char *, ...);
335int execv(const char *, char * const *);
336int execve(const char *, char * const *, char * const *);
337int execvp(const char *, char * const *);
35 */
36
37#ifndef _UNISTD_H_
38#define _UNISTD_H_
39
40#include <sys/cdefs.h>
41#include <sys/types.h> /* XXX adds too much pollution. */
42#include <sys/unistd.h>

--- 287 unchanged lines hidden (view full) ---

330int dup2(int, int);
331int eaccess(const char *, int);
332int execl(const char *, const char *, ...);
333int execle(const char *, const char *, ...);
334int execlp(const char *, const char *, ...);
335int execv(const char *, char * const *);
336int execve(const char *, char * const *, char * const *);
337int execvp(const char *, char * const *);
338int execvpe(const char *, char * const *, char * const *);
339pid_t fork(void);
340long fpathconf(int, int);
341char *getcwd(char *, size_t);
342gid_t getegid(void);
343uid_t geteuid(void);
344gid_t getgid(void);
345int getgroups(int, gid_t []);
346char *getlogin(void);

--- 230 unchanged lines hidden ---
338pid_t fork(void);
339long fpathconf(int, int);
340char *getcwd(char *, size_t);
341gid_t getegid(void);
342uid_t geteuid(void);
343gid_t getgid(void);
344int getgroups(int, gid_t []);
345char *getlogin(void);

--- 230 unchanged lines hidden ---