summaryrefslogtreecommitdiff
path: root/scope.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 /scope.h
parent0221c164222f9d91820826506118f46ffa08dd46 (diff)
downloadperl-20ce7b12268a3d32b5b246928de5084322e709cf.tar.gz
remove _() non-ansism
p4raw-id: //depot/perl@3518
Diffstat (limited to 'scope.h')
-rw-r--r--scope.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/scope.h b/scope.h
index 8358c54235..340ca993ce 100644
--- a/scope.h
+++ b/scope.h
@@ -89,7 +89,7 @@
#else
#define CALLDESTRUCTOR *SSPOPDPTR
#define SAVEDESTRUCTOR(f,p) \
- save_destructor(SOFT_CAST(void(*)_((void*)))(FUNC_NAME_TO_PTR(f)), \
+ save_destructor(SOFT_CAST(void(*)(void*))(FUNC_NAME_TO_PTR(f)), \
SOFT_CAST(void*)(p))
#endif
@@ -159,8 +159,8 @@ typedef struct jmpenv JMPENV;
* Function that catches/throws, and its callback for the
* body of protected processing.
*/
-typedef void *(CPERLscope(*protect_body_t)) _((va_list));
-typedef void *(CPERLscope(*protect_proc_t)) _((int *, protect_body_t, ...));
+typedef void *(CPERLscope(*protect_body_t)) (va_list);
+typedef void *(CPERLscope(*protect_proc_t)) (int *, protect_body_t, ...);
/*
* How to build the first jmpenv.