From af1a266670d040d2f4083ff309d732d648afba2a Mon Sep 17 00:00:00 2001 From: Angelos Mouzakitis Date: Tue, 10 Oct 2023 14:33:42 +0000 Subject: Add submodule dependency files Change-Id: Iaf8d18082d3991dec7c0ebbea540f092188eb4ec --- roms/openbios/include/sysinclude.h | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 roms/openbios/include/sysinclude.h (limited to 'roms/openbios/include/sysinclude.h') diff --git a/roms/openbios/include/sysinclude.h b/roms/openbios/include/sysinclude.h new file mode 100644 index 000000000..a8b828b4f --- /dev/null +++ b/roms/openbios/include/sysinclude.h @@ -0,0 +1,20 @@ +#ifndef __SYSINCLUDE_H +#define __SYSINCLUDE_H + +#ifdef BOOTSTRAP +#include "asm/types.h" +#include +#include +#include +#else /* BOOTSTRAP */ +#include "libc/stdlib.h" +#include "libc/string.h" +#endif /* BOOTSTRAP */ + +extern int printk( const char *fmt, ... ) \ + __attribute__ ((format (printf, 1, 2))); +#ifdef BOOTSTRAP +#define printk printf +#endif + +#endif /* __SYSINCLUDE_H */ -- cgit