ltassert.h 264 B

123456789101112131415161718192021
  1. // Defines the assertion interface for Lithtech.
  2. // Assertions should use the ASSERT macro.
  3. #ifndef __LTASSERT_H__
  4. #define __LTASSERT_H__
  5. #include <assert.h>
  6. #ifndef ASSERT
  7. #define ASSERT assert
  8. #endif
  9. #endif // __LTASSERT_H__