diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-02-25 20:04:37 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-02-25 20:04:37 +0000 |
commit | b46bc2b69fd0825253e7e513bb1c568567aa6ab0 (patch) | |
tree | 6855e4e348c834b30d9ba719519e98c0b67771b2 /proto.h | |
parent | 1ba6ee2b6ffb90b7d229bcee46bded6dda6b3bcc (diff) | |
download | perl-b46bc2b69fd0825253e7e513bb1c568567aa6ab0.tar.gz |
fix missing perl_alloc() declaration under PERL_IMPLICIT_SYS
p4raw-id: //depot/perl@5256
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -10,9 +10,8 @@ START_EXTERN_C #if defined(PERL_IMPLICIT_SYS) PERL_CALLCONV PerlInterpreter* perl_alloc_using(struct IPerlMem* m, struct IPerlMem* ms, struct IPerlMem* mp, struct IPerlEnv* e, struct IPerlStdIO* io, struct IPerlLIO* lio, struct IPerlDir* d, struct IPerlSock* s, struct IPerlProc* p); -#else -PERL_CALLCONV PerlInterpreter* perl_alloc(void); #endif +PERL_CALLCONV PerlInterpreter* perl_alloc(void); PERL_CALLCONV void perl_construct(PerlInterpreter* interp); PERL_CALLCONV void perl_destruct(PerlInterpreter* interp); PERL_CALLCONV void perl_free(PerlInterpreter* interp); |