diff options
author | Karl Williamson <public@khwilliamson.com> | 2012-12-02 21:20:36 -0700 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2012-12-09 09:47:17 -0700 |
commit | 9e3e825e7fea9a67d23db17933ab6c803f890219 (patch) | |
tree | 59b98375020668e42d3ae4593716522321d8670e /proto.h | |
parent | a1894d81735066945ef520af52cc180d1e0dfb10 (diff) | |
download | perl-9e3e825e7fea9a67d23db17933ab6c803f890219.tar.gz |
embed.fnc: Add missing entry
This function is defined in utf8.c, but isn't called by the core, and
there was no entry for it in embed.fnc
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1701,6 +1701,10 @@ PERL_CALLCONV bool Perl_is_uni_blank(pTHX_ UV c) __attribute__warn_unused_result__ __attribute__pure__; +PERL_CALLCONV bool Perl_is_uni_blank_lc(pTHX_ UV c) + __attribute__warn_unused_result__ + __attribute__pure__; + PERL_CALLCONV bool Perl_is_uni_cntrl(pTHX_ UV c) __attribute__warn_unused_result__ __attribute__pure__; |