summaryrefslogtreecommitdiff
path: root/Runtime/Utilities/Assert.h
blob: aab7b7347d1a08e61515d0785156c3502ccbe717 (plain)
1
2
3
4
5
6
7
8
#ifndef ASSERT_H
#define ASSERT_H

#include <assert.h>

#define Assert(c)  assert(c)

#endif