diff options
author | Steve Hay <SteveHay@planit.com> | 2007-05-02 11:22:19 +0000 |
---|---|---|
committer | Steve Hay <SteveHay@planit.com> | 2007-05-02 11:22:19 +0000 |
commit | 08ea85ebb7e662ede09f8aeca53b33a16b8e6a1e (patch) | |
tree | 24c260cb2dc6b1afe371ea65a136072757eaea7c /proto.h | |
parent | 47f9f84cc98b8a5779f47ca8a12283098d2816e4 (diff) | |
download | perl-08ea85ebb7e662ede09f8aeca53b33a16b8e6a1e.tar.gz |
Fix threaded builds (broken by change #31112)
p4raw-link: @31112 on //depot/perl: 3497a01ff49c0a24f2db9e69c6bb89e36e940ed4
p4raw-id: //depot/perl@31115
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4197,7 +4197,7 @@ PERL_CALLCONV char* Perl_my_atof2(pTHX_ const char *s, NV* value) __attribute__nonnull__(pTHX_2); PERL_CALLCONV int Perl_my_socketpair(int family, int type, int protocol, int fd[2]); -PERL_CALLCONV int Perl_my_dirfd(DIR* dir); +PERL_CALLCONV int Perl_my_dirfd(pTHX_ DIR* dir); #ifdef PERL_OLD_COPY_ON_WRITE PERL_CALLCONV SV* Perl_sv_setsv_cow(pTHX_ SV* dsv, SV* ssv) __attribute__nonnull__(pTHX_1) |