summaryrefslogtreecommitdiff
path: root/ruby_assert.h
diff options
context:
space:
mode:
Diffstat (limited to 'ruby_assert.h')
-rw-r--r--ruby_assert.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/ruby_assert.h b/ruby_assert.h
deleted file mode 100644
index fa15da1e25..0000000000
--- a/ruby_assert.h
+++ /dev/null
@@ -1,15 +0,0 @@
-#include "ruby/assert.h"
-
-#if !defined(__STDC_VERSION__) || (__STDC_VERSION__ < 199901L)
-/* C89 compilers are required to support strings of only 509 chars. */
-/* can't use RUBY_ASSERT for such compilers. */
-#include <assert.h>
-#else
-#undef assert
-#define assert RUBY_ASSERT
-#endif
-
-#ifdef NDEBUG
- #undef RUBY_NDEBUG
- #define RUBY_NDEBUG 1
-#endif