summaryrefslogtreecommitdiff
path: root/mg.h
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1999-06-02 04:47:10 +0000
committerGurusamy Sarathy <gsar@cpan.org>1999-06-02 04:47:10 +0000
commit20ce7b12268a3d32b5b246928de5084322e709cf (patch)
tree395ce45dee07dabd92553cbcdad9b91e37e8ae49 /mg.h
parent0221c164222f9d91820826506118f46ffa08dd46 (diff)
downloadperl-20ce7b12268a3d32b5b246928de5084322e709cf.tar.gz
remove _() non-ansism
p4raw-id: //depot/perl@3518
Diffstat (limited to 'mg.h')
-rw-r--r--mg.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/mg.h b/mg.h
index ccd3acc10b..ebd47c3a9b 100644
--- a/mg.h
+++ b/mg.h
@@ -11,11 +11,11 @@
STRUCT_MGVTBL_DEFINITION;
#else
struct mgvtbl {
- int (CPERLscope(*svt_get)) _((SV *sv, MAGIC* mg));
- int (CPERLscope(*svt_set)) _((SV *sv, MAGIC* mg));
- U32 (CPERLscope(*svt_len)) _((SV *sv, MAGIC* mg));
- int (CPERLscope(*svt_clear)) _((SV *sv, MAGIC* mg));
- int (CPERLscope(*svt_free)) _((SV *sv, MAGIC* mg));
+ int (CPERLscope(*svt_get)) (SV *sv, MAGIC* mg);
+ int (CPERLscope(*svt_set)) (SV *sv, MAGIC* mg);
+ U32 (CPERLscope(*svt_len)) (SV *sv, MAGIC* mg);
+ int (CPERLscope(*svt_clear)) (SV *sv, MAGIC* mg);
+ int (CPERLscope(*svt_free)) (SV *sv, MAGIC* mg);
};
#endif