[bugfix] main function definition

This commit is contained in:
Abdellah El Morabit 2025-10-26 21:25:15 +01:00
parent 6035abf102
commit 5a68a07436

View File

@ -8,37 +8,11 @@ void get_ram();
void get_disk(); void get_disk();
void get_device(); void get_device();
void get_c_version() int main(int argc, char **argv) {
{
#if __STDC_VERSION__
printf("C standard version: %ld\n", __STDC_VERSION__);
#else
printf("C standard not defined\n");
#endif
}
#ifdef __APPLE__
int main(int argc, char** argv) {
printf("%d", u_cpu->temperature); printf("%d", u_cpu->temperature);
return 0; return 0;
} }
#endif
#ifdef __gnu_linux
int main(int argc, char** argv) {
return 0;
}
#endif