1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-20 18:56:39 +02:00

Define isascii macro to be 1 also if STDC_HEADERS.

This commit is contained in:
Jim Meyering
1993-04-01 04:21:00 +00:00
parent def996ca60
commit 5c9a84b610
2 changed files with 2 additions and 2 deletions

View File

@@ -34,7 +34,7 @@
#include <regex.h>
#include "system.h"
#ifndef isascii
#if !defined (isascii) || defined (STDC_HEADERS)
#define isascii(c) 1
#endif