xref: /freebsd/sys/compat/linuxkpi/common/include/linux/poison.h (revision efd8749fe5cccb6c3d6b5f3c3515bf89ad306bcc)
1 /* Public domain. */
2 
3 #ifndef _LINUX_POISON_H
4 #define _LINUX_POISON_H
5 
6 #define POISON_INUSE	0xdb
7 #define POISON_FREE	0xdf
8 
9 #endif
10