Deleted Added
full compact
unistd.h (165230) unistd.h (175220)
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 165230 2006-12-14 21:42:03Z pjd $
34 * $FreeBSD: head/include/unistd.h 175220 2008-01-10 22:11:21Z jhb $
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>

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

475const char *
476 crypt_get_format(void);
477int crypt_set_format(const char *);
478int des_cipher(const char *, char *, long, int);
479int des_setkey(const char *key);
480void endusershell(void);
481int exect(const char *, char * const *, char * const *);
482int execvP(const char *, 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>

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

475const char *
476 crypt_get_format(void);
477int crypt_set_format(const char *);
478int des_cipher(const char *, char *, long, int);
479int des_setkey(const char *key);
480void endusershell(void);
481int exect(const char *, char * const *, char * const *);
482int execvP(const char *, const char *, char * const *);
483int feature_present(const char *);
483char *fflagstostr(u_long);
484int getdomainname(char *, int);
485int getgrouplist(const char *, gid_t, gid_t *, int *);
486mode_t getmode(const void *, mode_t);
487int getpeereid(int, uid_t *, gid_t *);
488int getresgid(gid_t *, gid_t *, gid_t *);
489int getresuid(uid_t *, uid_t *, uid_t *);
490char *getusershell(void);

--- 73 unchanged lines hidden ---
484char *fflagstostr(u_long);
485int getdomainname(char *, int);
486int getgrouplist(const char *, gid_t, gid_t *, int *);
487mode_t getmode(const void *, mode_t);
488int getpeereid(int, uid_t *, gid_t *);
489int getresgid(gid_t *, gid_t *, gid_t *);
490int getresuid(uid_t *, uid_t *, uid_t *);
491char *getusershell(void);

--- 73 unchanged lines hidden ---