Deleted Added
full compact
unistd.h (214510) unistd.h (216603)
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

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

22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 * @(#)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

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

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

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

524#define _MKSTEMP_DECLARED
525#endif
526int mkstemps(char *, int);
527#ifndef _MKTEMP_DECLARED
528char *mktemp(char *);
529#define _MKTEMP_DECLARED
530#endif
531int nfssvc(int, void *);
31 */
32
33#ifndef _UNISTD_H_
34#define _UNISTD_H_
35
36#include <sys/cdefs.h>
37#include <sys/types.h> /* XXX adds too much pollution. */
38#include <sys/unistd.h>

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

524#define _MKSTEMP_DECLARED
525#endif
526int mkstemps(char *, int);
527#ifndef _MKTEMP_DECLARED
528char *mktemp(char *);
529#define _MKTEMP_DECLARED
530#endif
531int nfssvc(int, void *);
532int nlm_syscall(int, int, int, char **);
532int profil(char *, size_t, vm_offset_t, int);
533int rcmd(char **, int, const char *, const char *, const char *, int *);
534int rcmd_af(char **, int, const char *,
535 const char *, const char *, int *, int);
536int rcmdsh(char **, int, const char *,
537 const char *, const char *, const char *);
538char *re_comp(const char *);
539int re_exec(const char *);

--- 46 unchanged lines hidden ---
533int profil(char *, size_t, vm_offset_t, int);
534int rcmd(char **, int, const char *, const char *, const char *, int *);
535int rcmd_af(char **, int, const char *,
536 const char *, const char *, int *, int);
537int rcmdsh(char **, int, const char *,
538 const char *, const char *, const char *);
539char *re_comp(const char *);
540int re_exec(const char *);

--- 46 unchanged lines hidden ---