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