summaryrefslogtreecommitdiffstats
path: root/acconfig.h
blob: 7b356d8fdba836d708b1ef40e143a76883a2da45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/* Special definitions for `mkid', processed by autoheader.
   This file is in the public domain.
*/

#ifndef _config_h_
#define _config_h_

@TOP@

/* Define if you have the <sys/ioctl.h> header file.  */
#undef HAVE_SYS_IOCTL_H

/* Define to filename of iid help text.  */
#undef IID_HELP_FILE

/* Define to the name of the distribution.  */
#undef PACKAGE

/* Define to the patch-level of the distribution.  */
#undef PATCH_LEVEL

/* Define to 1 if ANSI function prototypes are usable.  */
#undef PROTOTYPES

/* Define to the major.minor version # of the distribution.  */
#undef VERSION

@BOTTOM@

/* (u)intmin32_t are integer types that are *at least* 32 bits.
   Larger ints are OK.  */
#if SIZEOF_LONG == 4
  typedef unsigned long uintmin32_t;
  typedef long intmin32_t;
#else
  typedef unsigned int uintmin32_t;
  typedef int intmin32_t;
#endif

/* NeXT POSIX compatibility is losing.  sgtty is the way to go. */
#if HAVE_SGTTY_H
# ifdef NeXT
#  undef HAVE_TERMIOS_H
# endif
#endif

#endif /* not _config_h_ */