mirror of
https://github.com/opnsense/src.git
synced 2026-02-25 02:42:54 -05: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 50a56453dadbd05eb1c43addaf2773a1ef417445)
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_ */
|