diff options
author | Rafael Garcia-Suarez <rgs@consttype.org> | 2010-02-19 10:11:43 +0100 |
---|---|---|
committer | Rafael Garcia-Suarez <rgs@consttype.org> | 2010-02-19 10:11:43 +0100 |
commit | 70a6e658a75720da8d999a28489475f2c4c51bd1 (patch) | |
tree | 4a6156312d0e55cf574c466c4d8f2401137b3b56 /proto.h | |
parent | 0a96133fa53fe1b2ee03b5cce4cdd9c7c96a0867 (diff) | |
download | perl-70a6e658a75720da8d999a28489475f2c4c51bd1.tar.gz |
Regen headers after previous patches
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 13 |
1 files changed, 7 insertions, 6 deletions
@@ -119,6 +119,13 @@ PERL_CALLCONV void Perl_set_context(void *t) #define PERL_ARGS_ASSERT_SET_CONTEXT \ assert(t) +PERL_CALLCONV I32 Perl_regcurly(const char *s) + __attribute__warn_unused_result__ + __attribute__pure__ + __attribute__nonnull__(1); +#define PERL_ARGS_ASSERT_REGCURLY \ + assert(s) + END_EXTERN_C @@ -5314,12 +5321,6 @@ STATIC regnode* S_regclass(pTHX_ struct RExC_state_t *pRExC_state, U32 depth) #define PERL_ARGS_ASSERT_REGCLASS \ assert(pRExC_state) -STATIC I32 S_regcurly(const char *s) - __attribute__warn_unused_result__ - __attribute__nonnull__(1); -#define PERL_ARGS_ASSERT_REGCURLY \ - assert(s) - STATIC regnode* S_reg_node(pTHX_ struct RExC_state_t *pRExC_state, U8 op) __attribute__nonnull__(pTHX_1); #define PERL_ARGS_ASSERT_REG_NODE \ |