aboutsummaryrefslogtreecommitdiffstats
path: root/support/dfa.h
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2019-05-22 20:59:47 +0300
committerArnold D. Robbins <arnold@skeeve.com>2019-05-22 20:59:47 +0300
commit9a4ad64b02119e0048f6f09b244a4372dbb998b5 (patch)
tree9b0b073f5f522c560fbb4538a8d8d891f74ca903 /support/dfa.h
parentd53cdebbadffcfdde43dfeb3ddb4a61975fc608c (diff)
parent875f2de7fd309eed6096e2f51415aa3ea3666f27 (diff)
downloadegawk-9a4ad64b02119e0048f6f09b244a4372dbb998b5.tar.gz
egawk-9a4ad64b02119e0048f6f09b244a4372dbb998b5.tar.bz2
egawk-9a4ad64b02119e0048f6f09b244a4372dbb998b5.zip
Merge branch 'gawk-5.0-stable'
Diffstat (limited to 'support/dfa.h')
-rw-r--r--support/dfa.h8
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