git: 7c7419f60caf - main - linuxkpi: Add linux/stddef.h
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 04 Apr 2023 09:46:04 UTC
The branch main has been updated by manu: URL: https://cgit.FreeBSD.org/src/commit/?id=7c7419f60cafa4f666f5a22b5e5f090081516cd2 commit 7c7419f60cafa4f666f5a22b5e5f090081516cd2 Author: Emmanuel Vadot <manu@FreeBSD.org> AuthorDate: 2023-04-04 09:38:30 +0000 Commit: Emmanuel Vadot <manu@FreeBSD.org> CommitDate: 2023-04-04 09:39:27 +0000 linuxkpi: Add linux/stddef.h It simply include sys/stdef.h Obtained from: drm-kmod Sponsored by: Beckhoff Automation GmbH & Co. KG --- sys/compat/linuxkpi/common/include/linux/stddef.h | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/sys/compat/linuxkpi/common/include/linux/stddef.h b/sys/compat/linuxkpi/common/include/linux/stddef.h new file mode 100644 index 000000000000..8a10a679ef06 --- /dev/null +++ b/sys/compat/linuxkpi/common/include/linux/stddef.h @@ -0,0 +1,9 @@ +/* Public domain */ + +#ifndef _LINUXKPI_LINUX_STDDEF_H_ +#define _LINUXKPI_LINUX_STDDEF_H_ + +#include <sys/stddef.h> + +#endif /* _LINUXKPI_LINUX_STDDEF_H_ */ +