diff options
author | Craig A. Berry <craigberry@mac.com> | 2012-05-24 17:13:13 -0500 |
---|---|---|
committer | Craig A. Berry <craigberry@mac.com> | 2012-05-24 17:13:13 -0500 |
commit | 25bbd8263003a49c3f7afdc1cd082f6f66e76ce4 (patch) | |
tree | c8bd69cd71d0f5095fc9e90ce045107b75df879b /util.c | |
parent | 929df5ffc08c253ffd629a57e960a554868f4551 (diff) | |
download | perl-25bbd8263003a49c3f7afdc1cd082f6f66e76ce4.tar.gz |
File scope for VMS-specific #includes.
C++ requires #include directives to be at file scope, but we've
been lazy and haven't been doing that.
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -5727,6 +5727,10 @@ Perl_parse_unicode_opts(pTHX_ const char **popt) return opt; } +#ifdef VMS +# include <starlet.h> +#endif + U32 Perl_seed(pTHX) { @@ -5758,7 +5762,6 @@ Perl_seed(pTHX) #endif U32 u; #ifdef VMS -# include <starlet.h> /* when[] = (low 32 bits, high 32 bits) of time since epoch * in 100-ns units, typically incremented ever 10 ms. */ unsigned int when[2]; |