2020-04-10 01:11:40 -04:00
|
|
|
#ifndef RUBY_TOPLEVEL_ASSERT_H /*-*-C-*-vi:se ft=c:*/
|
|
|
|
#define RUBY_TOPLEVEL_ASSERT_H
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* @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-19 22:38:44 -04:00
|
|
|
#include "ruby/assert.h"
|
2016-01-22 03:33:55 -05:00
|
|
|
#undef assert
|
2020-05-19 22:38:44 -04:00
|
|
|
#define assert RUBY_ASSERT_NDEBUG
|
|
|
|
|
2020-04-10 01:11:40 -04:00
|
|
|
#endif /* RUBY_TOPLEVEL_ASSERT_H */
|