Browse Source

changed schar_t to signed_char_t and uchar_t to unsigned_char_t.

Mark Sibly 9 năm trước cách đây
mục cha
commit
3c0e04fd69
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      modules/libc/libc.monkey2

+ 2 - 2
modules/libc/libc.monkey2

@@ -13,12 +13,12 @@ End
 
 #rem monkeydoc C/C++ 'signed char' type.
 #end
-Struct schar_t="signed char"
+Struct signed_char_t="signed char"
 End
 
 #rem monkeydoc C/C++ 'unsigned char' type
 #end
-Struct uchar_t="unsigned char"
+Struct unsigned_char_t="unsigned char"
 End
 
 #rem monkeydoc C/C++ 'wchar_t' type