From 23850d35ec5df983b32e169b4775afd3043f9599 Mon Sep 17 00:00:00 2001 From: "Kaveh R. Ghazi" Date: Fri, 16 Nov 2001 21:49:25 +0000 Subject: [PATCH] regex.c: Check defined(__STDC__) || defined(HAVE_STRINGIZE) to determine whether ISO CPP... * regex.c: Check defined(__STDC__) || defined(HAVE_STRINGIZE) to determine whether ISO CPP token pasting is available. From-SVN: r47107 --- libiberty/ChangeLog | 5 +++++ libiberty/regex.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog index 933cc38c6466..2c392e6dbf8e 100644 --- a/libiberty/ChangeLog +++ b/libiberty/ChangeLog @@ -1,3 +1,8 @@ +2001-11-16 Kaveh R. Ghazi + + * regex.c: Check defined(__STDC__) || defined(HAVE_STRINGIZE) + to determine whether ISO CPP token pasting is available. + Thu Nov 15 11:06:25 2001 Jeffrey A Law (law@cygnus.com) * config.in (HAVE_UINTPTR_T): Provide autoconf stub. diff --git a/libiberty/regex.c b/libiberty/regex.c index 5ead8b642d66..375575a5cfe6 100644 --- a/libiberty/regex.c +++ b/libiberty/regex.c @@ -612,7 +612,7 @@ typedef enum # define UCHAR_T unsigned char # define COMPILED_BUFFER_VAR bufp->buffer # define OFFSET_ADDRESS_SIZE 2 -# if defined __STDC__ && __STDC__ +# if defined (__STDC__) || defined (HAVE_STRINGIZE) # define PREFIX(name) byte_##name # else # define PREFIX(name) byte_/**/name @@ -626,7 +626,7 @@ typedef enum # define COMPILED_BUFFER_VAR wc_buffer # define OFFSET_ADDRESS_SIZE 1 /* the size which STORE_NUMBER macro use */ # define CHAR_CLASS_SIZE ((__alignof__(wctype_t)+sizeof(wctype_t))/sizeof(CHAR_T)+1) -# if defined __STDC__ && __STDC__ +# if defined (__STDC__) || defined (HAVE_STRINGIZE) # define PREFIX(name) wcs_##name # define ARG_PREFIX(name) c##name # else -- 2.39.2