mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
NORETURN
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1109 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
81ef4309a2
commit
74d0eaf6a2
5 changed files with 35 additions and 13 deletions
|
@ -1,13 +1,16 @@
|
|||
#define USE_THREAD 1
|
||||
#define SIZEOF_INT 4
|
||||
#define SIZEOF_SHORT 2
|
||||
#define SIZEOF_LONG 4
|
||||
#define SIZEOF___INT64 0
|
||||
#define SIZEOF_VOIDP 4
|
||||
#define SIZEOF_FLOAT 4
|
||||
#define SIZEOF_DOUBLE 8
|
||||
#define HAVE_PROTOTYPES 1
|
||||
#define TOKEN_PASTE(x,y) x##y
|
||||
#define HAVE_STDARG_PROTOTYPES 1
|
||||
#define NORETURN(x) x __attribute__ ((noreturn))
|
||||
#define HAVE_INLINE 1
|
||||
#define INLINE __inline__
|
||||
#define HAVE_ATTR_NORETURN 1
|
||||
#define HAVE_DIRENT_H 1
|
||||
#define STDC_HEADERS 1
|
||||
|
@ -61,7 +64,8 @@
|
|||
#define HAVE_SETSID 1
|
||||
#define POSIX_SIGNAL 1
|
||||
#define BSD_SETPGRP setpgrp
|
||||
#define RSHIFT(x,y) ((x)>>y)
|
||||
#define RSHIFT(x,y) ((x)>>(int)y)
|
||||
#define DEFAULT_KCODE KCODE_NONE
|
||||
#define FILE_COUNT _cnt
|
||||
#define DLEXT ".o"
|
||||
#define RUBY_LIB "/lib/ruby/@MAJOR@.@MINOR@"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue