diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-02-02 06:54:22 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-02-02 06:54:22 +0000 |
commit | ea1f607caed6c38921cb6f3d97a719788e30b892 (patch) | |
tree | 439b082eda51cf1fe852c89c252ed946f583289b /perlapi.h | |
parent | 5cefc38b48b3e1ba030221debc31a0d0f7eeb90c (diff) | |
download | perl-ea1f607caed6c38921cb6f3d97a719788e30b892.tar.gz |
avoid mismatched type warnings
p4raw-id: //depot/perl@4951
Diffstat (limited to 'perlapi.h')
-rw-r--r-- | perlapi.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -58,7 +58,7 @@ EXT void *PL_force_link_funcs[] = { #undef PERLVARA #undef PERLVARI #undef PERLVARIC -#define PERLVAR(v,t) Perl_##v##_ptr, +#define PERLVAR(v,t) (void*)Perl_##v##_ptr, #define PERLVARA(v,n,t) PERLVAR(v,t) #define PERLVARI(v,t,i) PERLVAR(v,t) #define PERLVARIC(v,t,i) PERLVAR(v,t) |