FreeCalypso > hg > efr-experiments
view src/typedef.h @ 7:1fd613cec7ab
Theory-and-mystery: document written
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Wed, 17 Apr 2024 17:14:41 +0000 |
parents | 56410792419a |
children |
line wrap: on
line source
/*_____________________ | | | Basic types. | |_____________________| */ #if defined(__BORLANDC__) || defined(__WATCOMC__) || defined(_MSC_VER) || defined(__ZTC__) typedef short Word16; typedef long Word32; typedef int Flag; #elif defined(__sun) typedef short Word16; typedef long Word32; typedef int Flag; #elif defined(__unix__) || defined(__unix) typedef short Word16; typedef int Word32; typedef int Flag; #endif