* proj.h (isascii): Provide a default definition if none is available.
authorFred Fish <fnf@ninemoons.com>
Sun, 14 Sep 1997 18:36:19 +0000 (18:36 +0000)
committerJeff Law <law@gcc.gnu.org>
Sun, 14 Sep 1997 18:36:19 +0000 (12:36 -0600)
From-SVN: r15437

gcc/f/ChangeLog.egcs
gcc/f/proj.h

index b97c2e77febe572a780d1b02b394942ee7c38f04..9da564da134f3516af3ac7ef33ebdad8eb9b122c 100644 (file)
@@ -1,3 +1,7 @@
+Sun Sep 14 12:35:20 1997  Fred Fish (fnf@ninemoons.com)
+
+       * proj.h (isascii): Provide a default definition if none is available.
+
 Thu Sep 11 19:26:10 1997  Dave Love <d.love@dl.ac.uk>
 
        * config-lang.in: Remove the messages about possible build problems.
index 205130a49d1196122692de511c87b62dca092a27..2f0366ca167996f3a502c42c3debbe2e50314d3b 100644 (file)
@@ -99,4 +99,8 @@ typedef enum
 #define dmpout stderr
 #endif
 
+#ifndef isascii
+#define isascii(c) ((unsigned char)(c) <= 0x7f)
+#endif
+
 #endif