diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2010-07-16 12:47:28 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2010-07-16 12:47:28 +0300 |
commit | 6719bb6e1c5576e857ab6fc121ec31a75161a3e7 (patch) | |
tree | 97cba951750ceb73899e48490dbb33674e5b29e1 /vms/vms_misc.c | |
parent | 558ba97bdeac5a68bb9248a5c4cdf2feeb24e771 (diff) | |
download | egawk-6719bb6e1c5576e857ab6fc121ec31a75161a3e7.tar.gz egawk-6719bb6e1c5576e857ab6fc121ec31a75161a3e7.tar.bz2 egawk-6719bb6e1c5576e857ab6fc121ec31a75161a3e7.zip |
Move to gawk-3.0.2.
Diffstat (limited to 'vms/vms_misc.c')
-rw-r--r-- | vms/vms_misc.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/vms/vms_misc.c b/vms/vms_misc.c index d876534c..8e12c154 100644 --- a/vms/vms_misc.c +++ b/vms/vms_misc.c @@ -169,6 +169,8 @@ vms_devopen( const char *name, int mode ) return (file && *file && *name == '\0') ? fileno(file) : -1; } + +#ifndef VMS_V7 /* * VMS prior to V7.x has no timezone support unless DECnet/OSI is used. */ @@ -181,6 +183,8 @@ void tzset(void) { return; } +#endif /*VMS_V7*/ + /* getpgrp() -- there's no such thing as process group under VMS; * job tree might be close enough to be useful though. @@ -191,10 +195,7 @@ int getpgrp(void) } #ifndef __GNUC__ -# ifdef bcopy -# undef bcopy -# endif -void bcopy( const char *src, char *dst, int len ) +void vms_bcopy( const char *src, char *dst, int len ) { (void) memcpy(dst, src, len); } |