![]() |
![]() HP OpenVMS Systemsask the wizard |
![]() |
The Question is: Dear Wizard, Where is the __int64 data type documented/typedefed? I assume it can be used as a quadword data type. In DEC C, is this leagal: __int64 i; i = (__int64)12345; Thanks, John E. Frank The Answer is : The __int64 support is a creature of the DEC C for OpenVMS Alpha compiler, with no specific include files required. $ $ type x.c main() { __int64 i; i = (__int64)12345; } $ cc x.c $ cc/vers nla0: DEC C V5.7-004 on OpenVMS Alpha I7.2 $ Please see the current DEC C documentation for OpenVMS Alpha for details on __int64 and the associated quadword support.
|