mirror of
https://github.com/opnsense/src.git
synced 2026-02-15 16:48:36 -05:00
Required by drm-kmod 5.6 Reviewed by: hselasky, imp, manu MFC after: 2 weeks Obtained from: OpenBSD Differential revision: https://reviews.freebsd.org/D32092
9 lines
130 B
C
9 lines
130 B
C
/* Public domain. */
|
|
|
|
#ifndef _LINUX_POISON_H
|
|
#define _LINUX_POISON_H
|
|
|
|
#define POISON_INUSE 0xdb
|
|
#define POISON_FREE 0xdf
|
|
|
|
#endif
|