From: Jim Meyering Date: Thu, 22 Jun 1995 03:59:55 +0000 (+0000) Subject: [word]: Redefine. Otherwise, systems (Unicos for one) with X-Git-Tag: textutils-1_12_1~86 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e7d420aabb59d95038c0f534a06782888328783c;p=thirdparty%2Fcoreutils.git [word]: Redefine. Otherwise, systems (Unicos for one) with headers that define `word' to be a type get syntax errors because of the variable by the same name. --- diff --git a/src/fmt.c b/src/fmt.c index 98e5080e25..7545081b27 100644 --- a/src/fmt.c +++ b/src/fmt.c @@ -23,6 +23,10 @@ #include #include +/* Redefine. Otherwise, systems (Unicos for one) with headers that define + it to be a type get syntax errors for the variable declaration below. */ +#define word unused_word_type + #include "system.h" #include "version.h" #include "error.h"