diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2017-10-08 15:30:50 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2017-10-08 15:30:50 +0300 |
commit | b229671fa91db3bc2354c2f000a8155d32a9f117 (patch) | |
tree | ac4db348b3678489aa02aacf6c7450e47da61514 /support/regex_internal.h | |
parent | eb63283f0d56367bbba75522554751444c9d7588 (diff) | |
download | egawk-b229671fa91db3bc2354c2f000a8155d32a9f117.tar.gz egawk-b229671fa91db3bc2354c2f000a8155d32a9f117.tar.bz2 egawk-b229671fa91db3bc2354c2f000a8155d32a9f117.zip |
Fixes for OS/2.
Diffstat (limited to 'support/regex_internal.h')
-rw-r--r-- | support/regex_internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/support/regex_internal.h b/support/regex_internal.h index 9f4ff070..d4fde40f 100644 --- a/support/regex_internal.h +++ b/support/regex_internal.h @@ -405,7 +405,7 @@ struct re_dfa_t; typedef struct re_dfa_t re_dfa_t; #ifndef _LIBC -# ifdef __i386__ +# if defined( __i386__ ) && !defined(__EMX__) # define internal_function __attribute__ ((regparm (3), stdcall)) # else # define internal_function |