sdk: Add sys/types.h

Signed-off-by: Ian Moffett <ian@mirocom.org>
This commit is contained in:
2026-03-25 07:47:24 -04:00
parent c9a2d08c7e
commit fa7d9c0ae8
2 changed files with 13 additions and 1 deletions

View File

@@ -3,7 +3,7 @@
* Provided under the BSD-3 clause
*/
#include <stdint.h>
#include <sys/types.h>
/* From cpu/locore.S */
extern void md_cpu_lgdt(void *gdtr);

View File

@@ -0,0 +1,12 @@
/*
* Copyright (c) 2026, Mirocom Laboratories
* Provided under the BSD-3 clause
*/
#ifndef _SYS_TYPES_H_
#define _SYS_TYPES_H_ 1
#define _M1X_SOURCE
#include <stdint.h>
#endif /* !_SYS_TYPES_H_ */