Changes between Initial Version and Version 1 of Ticket #218


Ignore:
Timestamp:
Jul 10, 2013, 9:41:44 AM (11 years ago)
Author:
dmik
Comment:

Corrected your description. It contained a wrong excerpt, probably the one you have already fixed (instead of the original one). Also, please don't forget to use and when pasting code samples here, otherwise formatting gets broken.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #218 – Description

    initial v1  
    11In the OS/2 sdk, jni_mh.h defines the following types:
    22
     3{{{
    34#ifdef __GNUC__
    45typedef int jint;
    56typedef __int64_t jlong;
    6 typedef signed char jbyte;
     7typedef char jbyte;
    78#else
    89typedef long jint;
     
    1011typedef signed char jbyte;
    1112#endif
     13}}}
    1214
    1315but the __GNUC__ defines are different from default ones on other platforms.