2 /* $OpenLDAP: pkg/ldap/include/ac/unistd.h,v 1.37.2.3 2008/02/11 23:26:40 kurt Exp $ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
5 * Copyright 1998-2008 The OpenLDAP Foundation.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted only as authorized by the OpenLDAP
12 * A copy of this license is available in file LICENSE in the
13 * top-level directory of the distribution or, alternatively, at
14 * <http://www.OpenLDAP.org/license.html>.
20 #ifdef HAVE_SYS_TYPES_H
21 # include <sys/types.h>
32 /* note: callers of crypt(3) should include <ac/crypt.h> */
34 #if defined(HAVE_GETPASSPHRASE)
35 LDAP_LIBC_F(char*)(getpassphrase
)();
37 #elif defined(HAVE_GETPASS)
38 #define getpassphrase(p) getpass(p)
39 LDAP_LIBC_F(char*)(getpass
)();
42 #define NEED_GETPASSPHRASE 1
43 #define getpassphrase(p) lutil_getpass(p)
44 LDAP_LUTIL_F(char*)(lutil_getpass
) LDAP_P((const char *getpass
));
47 /* getopt() defines may be in separate include file */
51 #elif !defined(HAVE_GETOPT)
52 /* no getopt, assume we need getopt-compat.h */
53 # include <getopt-compat.h>
56 /* assume we need to declare these externs */
57 LDAP_LIBC_V (char *) optarg
;
58 LDAP_LIBC_V (int) optind
, opterr
, optopt
;
61 /* use lutil file locking */
62 #define ldap_lockf(x) lutil_lockf(x)
63 #define ldap_unlockf(x) lutil_unlockf(x)
64 #include <lutil_lockf.h>
67 * Windows: although sleep() will be resolved by both MSVC and Mingw GCC
68 * linkers, the function is not declared in header files. This is
69 * because Windows' version of the function is called _sleep(), and it
70 * is declared in stdlib.h
77 #endif /* _AC_UNISTD_H */