aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/libc/assert.h
blob: 5ff70ab16899123767e481ae7e561609d7a42b2c (plain) (blame)
1
2
3
4
5
6
7
8
#ifndef MELVIX_ASSERT_H
#define MELVIX_ASSERT_H

#define __FILENAME__                                                                               \
	(__builtin_strrchr(__FILE__, '/') ? __builtin_strrchr(__FILE__, '/') + 1 : __FILE__)
#define assert(exp) (exp) ? 0 : _assert(__FILENAME__, __LINE__, __func__, #exp)

#endif