mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-15 03:01:09 +08:00
27 lines
442 B
C
27 lines
442 B
C
/* Generic unistd.h */
|
|
|
|
#ifndef _AC_UNISTD_H
|
|
#define _AC_UNISTD_H
|
|
|
|
#if HAVE_SYS_TYPES_H
|
|
# include <sys/types.h>
|
|
#endif
|
|
|
|
#if HAVE_UNISTD_H
|
|
# include <unistd.h>
|
|
#endif
|
|
|
|
/* getopt() defines may be in separate include file */
|
|
#if HAVE_GETOPT_H
|
|
# include <getopt.h>
|
|
#endif
|
|
|
|
#ifndef HAVE_GETOPT
|
|
/* no getopt, assume we need getopt-compat.h */
|
|
# include <getopt-compat.h>
|
|
#endif
|
|
|
|
/* use _POSIX_VERSION for POSIX.1 code */
|
|
|
|
#endif /* _AC_UNISTD_H */
|