bugid=203059 jbyte defined incorrectly in jri_md.h

r=pete.zha sr=brendan/mkaply approval=mkaply
This commit is contained in:
joshua.xia%sun.com 2003-04-24 11:09:51 +00:00
Родитель 9224ca7b48
Коммит 7cd59bb5f1
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -121,7 +121,7 @@ typedef juint jsize;
#endif #endif
typedef unsigned char jbool; typedef unsigned char jbool;
typedef char jbyte; typedef signed char jbyte;
#ifdef IS_64 /* XXX ok for alpha, but not right on all 64-bit architectures */ #ifdef IS_64 /* XXX ok for alpha, but not right on all 64-bit architectures */
typedef unsigned int juint; typedef unsigned int juint;
typedef int jint; typedef int jint;

Просмотреть файл

@ -188,7 +188,7 @@ typedef struct _jobject *jref;
#endif #endif
typedef unsigned char jbool; typedef unsigned char jbool;
typedef char jbyte; typedef signed char jbyte;
#ifdef IS_64 /* XXX ok for alpha, but not right on all 64-bit architectures */ #ifdef IS_64 /* XXX ok for alpha, but not right on all 64-bit architectures */
typedef unsigned int juint; typedef unsigned int juint;
typedef int jint; typedef int jint;