diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-04-26 17:30:31 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-04-26 17:30:31 +0000 |
commit | 06bf62c76633176572262d33d1b4072ea6d227a8 (patch) | |
tree | 232c71c6f4b5a6c96c0bd8b59c078c83e60dff79 /proto.h | |
parent | cc391245e1d1990aad64067bd4c25ba76be67238 (diff) | |
download | perl-06bf62c76633176572262d33d1b4072ea6d227a8.tar.gz |
allow embedded null characters in diagnostics
p4raw-id: //depot/perl@3274
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -91,7 +91,7 @@ VIRTUAL char* delimcpy _((char* to, char* toend, char* from, char* fromend, int delim, I32* retlen)); VIRTUAL void deprecate _((char* s)); VIRTUAL OP* die _((const char* pat,...)); -VIRTUAL OP* die_where _((char* message)); +VIRTUAL OP* die_where _((char* message, STRLEN msglen)); VIRTUAL void dounwind _((I32 cxix)); VIRTUAL bool do_aexec _((SV* really, SV** mark, SV** sp)); VIRTUAL int do_binmode _((PerlIO *fp, int iotype, int flag)); @@ -302,7 +302,7 @@ VIRTUAL void markstack_grow _((void)); #ifdef USE_LOCALE_COLLATE VIRTUAL char* mem_collxfrm _((const char* s, STRLEN len, STRLEN* xlen)); #endif -VIRTUAL char* mess _((const char* pat, va_list* args)); +VIRTUAL SV* mess _((const char* pat, va_list* args)); VIRTUAL int mg_clear _((SV* sv)); VIRTUAL int mg_copy _((SV* sv, SV* nsv, const char* key, I32 klen)); VIRTUAL MAGIC* mg_find _((SV* sv, int type)); |