diff options
author | Steve Peters <steve@fisharerojo.org> | 2006-05-01 23:25:30 +0000 |
---|---|---|
committer | Steve Peters <steve@fisharerojo.org> | 2006-05-01 23:25:30 +0000 |
commit | 74d5ed12f2c8cab97d22a9affcb3e8e87bad2b7b (patch) | |
tree | 27dbb4ce2e86189b8ef20a73d865809ce0b246c5 /proto.h | |
parent | a6fd7f3f0e271856b7ecf5cd1e2906924a6b206a (diff) | |
download | perl-74d5ed12f2c8cab97d22a9affcb3e8e87bad2b7b.tar.gz |
Reverting context removal from change #27992. This should
clear up threaded builds on Win32 and VMS.
p4raw-link: @27992 on //depot/perl: df528165173896ed88fc3da7e1aa8bc3ef3b2416
p4raw-id: //depot/perl@28041
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -3379,10 +3379,10 @@ STATIC void S_save_lines(pTHX_ AV *array, SV *sv) STATIC OP* S_doeval(pTHX_ int gimme, OP** startop, CV* outside, U32 seq) __attribute__warn_unused_result__; -STATIC PerlIO * S_check_type_and_open(const char *name, const char *mode) +STATIC PerlIO * S_check_type_and_open(pTHX_ const char *name, const char *mode) __attribute__warn_unused_result__ - __attribute__nonnull__(1) - __attribute__nonnull__(2); + __attribute__nonnull__(pTHX_1) + __attribute__nonnull__(pTHX_2); STATIC PerlIO * S_doopen_pm(pTHX_ const char *name, const char *mode) __attribute__warn_unused_result__ |