blob: e6fae179920d75a61bd5c759df067371a836a905 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# Error
---
## Object Definitions
```c
typedef struct _kpl_error {
KPL_SLAB_HEADER(struct _kpl_error);
char *file, *function;
kpl_class class;
int32_t line;
} kpl_error;
```
|