diff --git a/include/OS/OS.h b/include/OS/OS.h new file mode 100644 index 00000000..3093e1e0 --- /dev/null +++ b/include/OS/OS.h @@ -0,0 +1,16 @@ +#ifndef OS_H +#define OS_H + +#include "types.h" + +#ifdef __cplusplus +extern "C" { +#endif + +void OSRegisterVersion(const char *); + +#ifdef __cplusplus +} +#endif + +#endif // OS_H \ No newline at end of file diff --git a/source/OS/OS.c b/source/OS/OS.c new file mode 100644 index 00000000..b3a60b25 --- /dev/null +++ b/source/OS/OS.c @@ -0,0 +1,7 @@ +#include "OS/OS.h" +#include "OS/OSError.h" + +void OSRegisterVersion(const char *versionStr) +{ + OSReport("%s\n", versionStr); +} \ No newline at end of file