1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ext/fiddle/fiddle.h: fixed typo.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@28470 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2010-06-28 21:22:57 +00:00
parent 6e8f7ef966
commit 40d95eabb6

View file

@ -27,14 +27,14 @@
#undef ffi_type_ulong #undef ffi_type_ulong
#undef ffi_type_slong #undef ffi_type_slong
#ifdef CHAR_BIT == 8 #if CHAR_BIT == 8
# define ffi_type_uchar ffi_type_uint8 # define ffi_type_uchar ffi_type_uint8
# define ffi_type_schar ffi_type_sint8 # define ffi_type_schar ffi_type_sint8
#else #else
# error "CHAR_BIT not supported" # error "CHAR_BIT not supported"
#endif #endif
# ifdef SIZEOF_SHORT == 2 # if SIZEOF_SHORT == 2
# define ffi_type_ushort ffi_type_uint16 # define ffi_type_ushort ffi_type_uint16
# define ffi_type_sshort ffi_type_sint16 # define ffi_type_sshort ffi_type_sint16
# elif SIZEOF_SHORT == 4 # elif SIZEOF_SHORT == 4