blob: 2de6438c44e5019655ca55a499933d5b65d6cb06 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef ASSERT_ERROR_H
#define ASSERT_ERROR_H
#ifndef __dead
#define __dead __attribute__((__noreturn__))
#endif
__dead void _assert_error(const char *, const long int);
#endif
|