shithub: scc

ref: ac2335bcf6ddc65ff3ed64e87b0f3d02a7fad6db
dir: /libc/include/z80/assert.h/

View raw version
/* See LICENSE file for copyright and license details. */
#ifndef _ASSERT_H
#define _ASSERT_H

#ifndef NDEBUG
#define assert(exp) __assert(#exp, __FILE__, __LINE__)
#endif

#endif