OSDN Git Service

* proj.h (isascii): Provide a default definition if none is available.
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 14 Sep 1997 18:36:19 +0000 (18:36 +0000)
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 14 Sep 1997 18:36:19 +0000 (18:36 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@15437 138bc75d-0d04-0410-961f-82ee72b054a4

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

index b97c2e7..9da564d 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 205130a..2f0366c 100644 (file)
@@ -99,4 +99,8 @@ typedef enum
 #define dmpout stderr
 #endif
 
+#ifndef isascii
+#define isascii(c) ((unsigned char)(c) <= 0x7f)
+#endif
+
 #endif