diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2003-12-09 15:27:46 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2003-12-09 15:27:46 (GMT) |
commit | 4e5360f74973e4d77b3a766a0ab4ac4e378421c4 (patch) | |
tree | 57aefbfafb00fe48c812a7e68700bfc57dd2fb98 /tools/man2tcl.c | |
parent | e59347aca80cd4e89dac4bea20bed1e42b090418 (diff) | |
download | tcl-4e5360f74973e4d77b3a766a0ab4ac4e378421c4.zip tcl-4e5360f74973e4d77b3a766a0ab4ac4e378421c4.tar.gz tcl-4e5360f74973e4d77b3a766a0ab4ac4e378421c4.tar.bz2 |
#ifdef'd out errno declarations; incompatible with recent glibc. [Bug 852369]
Diffstat (limited to 'tools/man2tcl.c')
-rw-r--r-- | tools/man2tcl.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/tools/man2tcl.c b/tools/man2tcl.c index f7e5356..a5c71cb 100644 --- a/tools/man2tcl.c +++ b/tools/man2tcl.c @@ -16,7 +16,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: man2tcl.c,v 1.7 2002/05/08 23:48:13 davygrvy Exp $ + * RCS: @(#) $Id: man2tcl.c,v 1.8 2003/12/09 15:27:47 dkf Exp $ */ static char sccsid[] = "@(#) man2tcl.c 1.3 95/08/12 17:34:08"; @@ -32,7 +32,14 @@ static char sccsid[] = "@(#) man2tcl.c 1.3 95/08/12 17:34:08"; * Imported things that aren't defined in header files: */ +/* + * Some <errno.h> define errno to be something complex and + * thread-aware; in that case we definitely do not want to declare + * errno ourselves! + */ +#ifndef errno extern int errno; +#endif /* * Current line number, used for error messages. |