summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2015-01-26 22:13:56 -0500
committerJarkko Hietaniemi <jhi@iki.fi>2015-01-28 06:52:33 -0500
commit5563f4573c9a18a83c4aa768343985e14f06e1b4 (patch)
tree7f79e607ad9e09f8ddf7313c78637d8b8c9d673d /proto.h
parentbf8c8f7f2000866d6e5e9e29cb9acdef10025521 (diff)
downloadperl-5563f4573c9a18a83c4aa768343985e14f06e1b4.tar.gz
infnan: grok_infnan now needs context
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/proto.h b/proto.h
index 9f68fac96c..ca280b53fd 100644
--- a/proto.h
+++ b/proto.h
@@ -1359,9 +1359,9 @@ PERL_CALLCONV UV Perl_grok_hex(pTHX_ const char* start, STRLEN* len_p, I32* flag
#define PERL_ARGS_ASSERT_GROK_HEX \
assert(start); assert(len_p); assert(flags)
-PERL_CALLCONV int Perl_grok_infnan(const char** sp, const char *send)
- __attribute__nonnull__(1)
- __attribute__nonnull__(2);
+PERL_CALLCONV int Perl_grok_infnan(pTHX_ const char** sp, const char *send)
+ __attribute__nonnull__(pTHX_1)
+ __attribute__nonnull__(pTHX_2);
#define PERL_ARGS_ASSERT_GROK_INFNAN \
assert(sp); assert(send)