diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 1999-09-14 08:07:49 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1999-09-14 08:07:49 +0000 |
commit | 5c9056b3578c63dda5b326627892bc244d80d42c (patch) | |
tree | b6096328a7c04373762af05244f8c59b82220ba5 /perl.h | |
parent | 8681211cd53c170e453c3c96b3c804c706ab867c (diff) | |
download | perl-5c9056b3578c63dda5b326627892bc244d80d42c.tar.gz |
Not that UVSIZE normally differs that much from IVSIZE...
p4raw-id: //depot/cfgperl@4147
Diffstat (limited to 'perl.h')
-rw-r--r-- | perl.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1044,7 +1044,7 @@ Free_t Perl_mfree (Malloc_t where); # define IVSIZE LONGSIZE #endif #define IV_DIG (BIT_DIGITS(IVSIZE * 8)) -#define UV_DIG (BIT_DIGITS(IVSIZE * 8)) +#define UV_DIG (BIT_DIGITS(UVSIZE * 8)) /* * The macros INT2PTR and NUM2PTR are (despite their names) |