Commit a9aaedc9 by Fred Fish Committed by Jeff Law

* proj.h (isascii): Provide a default definition if none is available.

From-SVN: r15437
parent be1ed94f
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.
......
......@@ -99,4 +99,8 @@ typedef enum
#define dmpout stderr
#endif
#ifndef isascii
#define isascii(c) ((unsigned char)(c) <= 0x7f)
#endif
#endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment