mirror of
https://github.com/opnsense/src.git
synced 2026-06-28 18:02:28 -04:00
[Why]
We need this for the `bool` type.
Reviewed by: manu
Approved by: manu
Differential Revision: https://reviews.freebsd.org/D43016
(cherry picked from commit 50a56453da)
20 lines
324 B
C
20 lines
324 B
C
/* Public domain. */
|
|
|
|
#ifndef _LINUXKPI_LINUX_CC_PLATFORM_H_
|
|
#define _LINUXKPI_LINUX_CC_PLATFORM_H_
|
|
|
|
#include <linux/types.h>
|
|
#include <linux/stddef.h>
|
|
|
|
enum cc_attr {
|
|
CC_ATTR_MEM_ENCRYPT,
|
|
};
|
|
|
|
static inline bool
|
|
cc_platform_has(enum cc_attr attr __unused)
|
|
{
|
|
|
|
return (false);
|
|
}
|
|
|
|
#endif /* _LINUXKPI_LINUX_CC_PLATFORM_H_ */
|