diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2019-05-22 20:05:05 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2019-05-22 20:05:05 +0300 |
commit | 990649951e7fa34ae589a19ac686ffcc655d584b (patch) | |
tree | 70f8725186e548415c536ae8193fd55bb52968d9 /support/dfa.h | |
parent | 63dafc1ea7696ea3383f970fc7eabc5f939b56ae (diff) | |
download | egawk-990649951e7fa34ae589a19ac686ffcc655d584b.tar.gz egawk-990649951e7fa34ae589a19ac686ffcc655d584b.tar.bz2 egawk-990649951e7fa34ae589a19ac686ffcc655d584b.zip |
Sync support files with GNULIB.
Diffstat (limited to 'support/dfa.h')
-rw-r--r-- | support/dfa.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/support/dfa.h b/support/dfa.h index 2cf11b6b..2e25ef9f 100644 --- a/support/dfa.h +++ b/support/dfa.h @@ -22,12 +22,6 @@ #include <stdbool.h> #include <stddef.h> -#if 3 <= __GNUC__ -# define _GL_ATTRIBUTE_MALLOC __attribute__ ((__malloc__)) -#else -# define _GL_ATTRIBUTE_MALLOC -#endif - struct localeinfo; /* See localeinfo.h. */ /* Element of a list of strings, at least one of which is known to @@ -48,7 +42,7 @@ struct dfa; /* Allocate a struct dfa. The struct dfa is completely opaque. The returned pointer should be passed directly to free() after calling dfafree() on it. */ -extern struct dfa *dfaalloc (void) _GL_ATTRIBUTE_MALLOC; +extern struct dfa *dfaalloc (void) /* _GL_ATTRIBUTE_MALLOC */; /* DFA options that can be ORed together, for dfasyntax's 4th arg. */ enum |