summaryrefslogtreecommitdiff
path: root/djgpp/config.hin
diff options
context:
space:
mode:
authoreban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2001-01-10 08:09:01 +0000
committereban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2001-01-10 08:09:01 +0000
commit74d0eaf6a22f86a60f37b439c65039fc277de0fa (patch)
tree2e03f4ded3c2e7dd345e977fa40e52efea291348 /djgpp/config.hin
parent81ef4309a244b78223832895d714fcaec85ed5bf (diff)
NORETURN
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1109 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'djgpp/config.hin')
-rw-r--r--djgpp/config.hin8
1 files changed, 6 insertions, 2 deletions
diff --git a/djgpp/config.hin b/djgpp/config.hin
index 973a0db93d..8dda8af744 100644
--- a/djgpp/config.hin
+++ b/djgpp/config.hin
@@ -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@"