diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2018-06-27 20:18:04 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2018-06-27 20:18:04 +0300 |
commit | ffea4491ee78863f024b34106514b282e281576b (patch) | |
tree | 36f5e671ba24eef76ba980244db9b0ce658abbaa /support | |
parent | c7d9eb0bb45e11da69c420488aa7af865f2ed5bd (diff) | |
download | egawk-ffea4491ee78863f024b34106514b282e281576b.tar.gz egawk-ffea4491ee78863f024b34106514b282e281576b.tar.bz2 egawk-ffea4491ee78863f024b34106514b282e281576b.zip |
Small simplification to support/regex_internal.h.
Diffstat (limited to 'support')
-rw-r--r-- | support/ChangeLog | 5 | ||||
-rw-r--r-- | support/regex_internal.h | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/support/ChangeLog b/support/ChangeLog index 6dc5def3..2bf44167 100644 --- a/support/ChangeLog +++ b/support/ChangeLog @@ -1,3 +1,8 @@ +2018-06-21 Arnold D. Robbins <arnold@skeeve.com> + + * regex_internal.h: Simplify undefining inline and defining to empty. + Thanks to Florian Weimer <fweimer@redhat.com> for the suggestion. + 2018-03-13 Arnold D. Robbins <arnold@skeeve.com> * getopt.c: Update copyright year. diff --git a/support/regex_internal.h b/support/regex_internal.h index f97ecbe2..cdd6e3a1 100644 --- a/support/regex_internal.h +++ b/support/regex_internal.h @@ -111,9 +111,7 @@ is_blank (int c) # define BE(expr, val) __builtin_expect (expr, val) #else # define BE(expr, val) (expr) -# ifdef inline # undef inline -# endif # define inline #endif |