Code: Select all
#include <stdio.h> // <= this works
// #include <thread> // <= error: "No such file or directory"
// #include <algorithm> // <= error: "No such file or directory"
void app_main(void)
{
}
How can I deal with this error?
Code: Select all
#include <stdio.h> // <= this works
// #include <thread> // <= error: "No such file or directory"
// #include <algorithm> // <= error: "No such file or directory"
void app_main(void)
{
}
Code: Select all
extern "C" {
void app_main();
}
Users browsing this forum: No registered users and 118 guests