diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2003-06-22 17:00:10 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-06-22 17:00:10 +0000 |
commit | 132efe8bfb7cd0fb1beb15aaf284e33bf44eb1fa (patch) | |
tree | 3b2beed2e18e5ad7945a70f2d79c05ab02f6c1a8 /proto.h | |
parent | 7e51ecd7970e5ab67154a1eb99b2c95004024435 (diff) | |
download | perl-132efe8bfb7cd0fb1beb15aaf284e33bf44eb1fa.tar.gz |
Move the (pseudo)seed functio for (pseudo)random numbers to util.c.
p4raw-id: //depot/perl@19843
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -796,6 +796,7 @@ PERL_CALLCONV void Perl_vivify_defelem(pTHX_ SV* sv); PERL_CALLCONV void Perl_vivify_ref(pTHX_ SV* sv, U32 to_what); PERL_CALLCONV I32 Perl_wait4pid(pTHX_ Pid_t pid, int* statusp, int flags); PERL_CALLCONV U32 Perl_parse_unicode_opts(pTHX_ char **popt); +PERL_CALLCONV U32 Perl_seed(pTHX); PERL_CALLCONV void Perl_report_evil_fh(pTHX_ GV *gv, IO *io, I32 op); PERL_CALLCONV void Perl_report_uninit(pTHX); PERL_CALLCONV void Perl_warn(pTHX_ const char* pat, ...) @@ -1016,7 +1017,6 @@ STATIC void* S_vcall_list_body(pTHX_ va_list args); #if defined(PERL_IN_PP_C) || defined(PERL_DECL_PROT) STATIC SV* S_refto(pTHX_ SV* sv); -STATIC U32 S_seed(pTHX); #endif #if defined(PERL_IN_PP_PACK_C) || defined(PERL_DECL_PROT) |