in reply to Re^2: Perl and 64-bit compilers
in thread Perl and 64-bit compilers
I think you misunderstand what pack tells you. Look. The pack templates are:
The native long is always at least as large as the native int. The native int could potentially be larger then 32 bits. On typical systems, however, an int is 32 bits long and long is either 32 or 64 bits.i - native C int l - always 32 bits (nicknamed "long") l! - native C long
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Perl and 64-bit compilers
by syphilis (Archbishop) on Feb 18, 2007 at 15:35 UTC | |
by syphilis (Archbishop) on Feb 18, 2007 at 23:47 UTC |