| [1506] | 1 | /* pwd.h,v 1.4 2004/09/14 22:27:35 bird Exp */
|
|---|
| 2 | /**
|
|---|
| 3 | * FreeBSD 5.2
|
|---|
| 4 | * @changed bird: some EMXisms.
|
|---|
| 5 | */
|
|---|
| 6 |
|
|---|
| [1505] | 7 | /*-
|
|---|
| 8 | * Copyright (c) 1989, 1993
|
|---|
| 9 | * The Regents of the University of California. All rights reserved.
|
|---|
| 10 | * (c) UNIX System Laboratories, Inc.
|
|---|
| 11 | * All or some portions of this file are derived from material licensed
|
|---|
| 12 | * to the University of California by American Telephone and Telegraph
|
|---|
| 13 | * Co. or Unix System Laboratories, Inc. and are reproduced herein with
|
|---|
| 14 | * the permission of UNIX System Laboratories, Inc.
|
|---|
| 15 | *
|
|---|
| 16 | * Redistribution and use in source and binary forms, with or without
|
|---|
| 17 | * modification, are permitted provided that the following conditions
|
|---|
| 18 | * are met:
|
|---|
| 19 | * 1. Redistributions of source code must retain the above copyright
|
|---|
| 20 | * notice, this list of conditions and the following disclaimer.
|
|---|
| 21 | * 2. Redistributions in binary form must reproduce the above copyright
|
|---|
| 22 | * notice, this list of conditions and the following disclaimer in the
|
|---|
| 23 | * documentation and/or other materials provided with the distribution.
|
|---|
| 24 | * 3. All advertising materials mentioning features or use of this software
|
|---|
| 25 | * must display the following acknowledgement:
|
|---|
| 26 | * This product includes software developed by the University of
|
|---|
| 27 | * California, Berkeley and its contributors.
|
|---|
| 28 | * 4. Neither the name of the University nor the names of its contributors
|
|---|
| 29 | * may be used to endorse or promote products derived from this software
|
|---|
| 30 | * without specific prior written permission.
|
|---|
| 31 | *
|
|---|
| 32 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|---|
| 33 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|---|
| 34 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|---|
| 35 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|---|
| 36 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|---|
| 37 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|---|
| 38 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|---|
| 39 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|---|
| 40 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|---|
| 41 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|---|
| 42 | * SUCH DAMAGE.
|
|---|
| 43 | *
|
|---|
| 44 | * @(#)pwd.h 8.2 (Berkeley) 1/21/94
|
|---|
| 45 | * $FreeBSD: src/include/pwd.h,v 1.15 2003/04/18 14:11:17 nectar Exp $
|
|---|
| 46 | */
|
|---|
| [18] | 47 |
|
|---|
| [1505] | 48 | #ifndef _PWD_H_
|
|---|
| 49 | #define _PWD_H_
|
|---|
| 50 | #define _PWD_H /* bird: EMX */
|
|---|
| 51 |
|
|---|
| 52 | #include <sys/cdefs.h>
|
|---|
| 53 | #include <sys/_types.h>
|
|---|
| 54 |
|
|---|
| 55 | #if !defined(_GID_T_DECLARED) && !defined(_GID_T) /* bird */
|
|---|
| 56 | typedef __gid_t gid_t;
|
|---|
| 57 | #define _GID_T_DECLARED
|
|---|
| 58 | #define _GID_T /* bird */
|
|---|
| [18] | 59 | #endif
|
|---|
| 60 |
|
|---|
| [1505] | 61 | #if !defined(_TIME_T_DECLARED) && !defined(_TIME_T) /* bird */
|
|---|
| 62 | typedef __time_t time_t;
|
|---|
| 63 | #define _TIME_T_DECLARED
|
|---|
| 64 | #define _TIME_T /* bird */
|
|---|
| [18] | 65 | #endif
|
|---|
| 66 |
|
|---|
| [1505] | 67 | #if !defined(_UID_T_DECLARED) && !defined(_UID_T) /* bird */
|
|---|
| 68 | typedef __uid_t uid_t;
|
|---|
| 69 | #define _UID_T_DECLARED
|
|---|
| 70 | #define _UID_T /* bird */
|
|---|
| [18] | 71 | #endif
|
|---|
| 72 |
|
|---|
| [1505] | 73 | #if !defined(_SIZE_T_DECLARED) && !defined(_SIZE_T) /* bird */
|
|---|
| 74 | typedef __size_t size_t;
|
|---|
| |
|---|