]> git.sur5r.net Git - openldap/blob - include/ac/unistd.h
hostname needs to be static
[openldap] / include / ac / unistd.h
1 /* Generic unistd.h */
2 /* $OpenLDAP$ */
3 /*
4  * Copyright 1998,1999 The OpenLDAP Foundation, Redwood City, California, USA
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms are permitted only
8  * as authorized by the OpenLDAP Public License.  A copy of this
9  * license is available at http://www.OpenLDAP.org/license.html or
10  * in file LICENSE in the top-level directory of the distribution.
11  */
12
13 #ifndef _AC_UNISTD_H
14 #define _AC_UNISTD_H
15
16 #if HAVE_SYS_TYPES_H
17 #       include <sys/types.h>
18 #endif
19
20 #if HAVE_UNISTD_H
21 #       include <unistd.h>
22 #endif
23
24 #if HAVE_PROCESS_H
25 #       include <process.h>
26 #endif
27
28 /* note: callers of crypt(3) should include <ac/crypt.h> */
29
30 #ifndef HAVE_GETPASS
31 LIBLUTIL_F(char*)(getpass) LDAP_P((const char *getpass));
32 #else
33 LIBC_F(char*)(getpass)();
34 #endif
35
36 /* getopt() defines may be in separate include file */
37 #if HAVE_GETOPT_H
38 #       include <getopt.h>
39
40 #elif !defined(HAVE_GETOPT)
41         /* no getopt, assume we need getopt-compat.h */
42 #       include <getopt-compat.h>
43
44 #else
45         /* assume we need to declare these externs */
46         LIBC_F (char *) optarg;
47         LIBC_F (int) optind, opterr, optopt;
48 #endif
49
50 #ifndef HAVE_TEMPNAM
51         LIBLUTIL_F(char *)(tempnam) LDAP_P(( const char *tmpdir,
52                                              const char *prefix));
53 #endif
54
55 /* use lutil file locking */
56 #define ldap_lockf(x)   lutil_lockf(x)
57 #define ldap_unlockf(x) lutil_unlockf(x)
58 #include <lutil_lockf.h>
59
60 #endif /* _AC_UNISTD_H */