2020-04-10 08:11:40 +03:00
|
|
|
#ifndef RUBY_TOPLEVEL_ASSERT_H /*-*-C-*-vi:se ft=c:*/
|
|
|
|
#define RUBY_TOPLEVEL_ASSERT_H
|
|
|
|
/**
|
|
|
|
* @author Ruby developers <ruby-core@ruby-lang.org>
|
|
|
|
* @copyright This file is a part of the programming language Ruby.
|
|
|
|
* Permission is hereby granted, to either redistribute and/or
|
|
|
|
* modify this file, provided that the conditions mentioned in the
|
|
|
|
* file COPYING are met. Consult the file for details.
|
|
|
|
*/
|
2020-05-20 05:38:44 +03:00
|
|
|
#include "ruby/assert.h"
|
2016-01-22 11:33:55 +03:00
|
|
|
#undef assert
|
2020-05-20 05:38:44 +03:00
|
|
|
#define assert RUBY_ASSERT_NDEBUG
|
|
|
|
|
2020-04-10 08:11:40 +03:00
|
|
|
#endif /* RUBY_TOPLEVEL_ASSERT_H */
|