[teagba] Make cstart.cpp only compile if GCC

This commit is contained in:
Gary Talent 2025-05-22 20:40:33 -05:00
parent e7e7a22390
commit c93eec4f05

View File

@ -2,6 +2,8 @@
* Copyright 2016 - 2024 Gary Talent (gary@drinkingtea.net). All rights reserved. * Copyright 2016 - 2024 Gary Talent (gary@drinkingtea.net). All rights reserved.
*/ */
#ifdef __GNUC__
#include <ox/std/heapmgr.hpp> #include <ox/std/heapmgr.hpp>
#include <teagba/bios.hpp> #include <teagba/bios.hpp>
@ -58,3 +60,5 @@ int c_start() {
} }
} }
#endif