diff options
author | Greg McGary <greg@mcgary.org> | 1997-04-18 06:37:35 +0000 |
---|---|---|
committer | Greg McGary <greg@mcgary.org> | 1997-04-18 06:37:35 +0000 |
commit | db4eb289d1767b96b349e993313e83d93c07a8de (patch) | |
tree | c10f8ee5bad361c93d335c1088249c5ecdb12578 /acconfig.h | |
parent | c2e961ee7b01e5390b0973e69c68e5ae2e91702d (diff) | |
download | idutils-db4eb289d1767b96b349e993313e83d93c07a8de.tar.gz idutils-db4eb289d1767b96b349e993313e83d93c07a8de.tar.bz2 idutils-db4eb289d1767b96b349e993313e83d93c07a8de.zip |
imported from mkid-3.0.8r3_0_8
Diffstat (limited to 'acconfig.h')
-rw-r--r-- | acconfig.h | 26 |
1 files changed, 12 insertions, 14 deletions
@@ -16,9 +16,6 @@ /* 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 @@ -27,20 +24,21 @@ @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 +/* According to Thomas Neumann, NeXT POSIX termios support is losing, + and sgtty is the way to go. Note: the comment between #undef & + HAVE_TERMIOS_H is necessary to defeat configure's edits. */ -/* NeXT POSIX compatibility is losing. sgtty is the way to go. */ #if HAVE_SGTTY_H # ifdef NeXT -# undef HAVE_TERMIOS_H +# undef /**/ HAVE_TERMIOS_H +# endif +#endif + +#ifndef __P +# ifndef PROTOTYPES +# define __P(args) () +# else +# define __P(args) args # endif #endif |