Skip to content
This repository has been archived by the owner on Feb 17, 2024. It is now read-only.

Commit

Permalink
Yet another commit to main (fix test platform warning)
Browse files Browse the repository at this point in the history
  • Loading branch information
voidbert committed Jan 21, 2024
1 parent 448e546 commit 51e87a2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion trabalho-pratico/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@
* @retval 1 Insuccess.
*/
int main(int argc, char **argv) {
system("cat /proc/cpuinfo");
if (system("cat /proc/cpuinfo")) {
printf("Micro-optimization attempt failed :-(\n");
}

if (argc == 1) {
return interactive_mode_run();
Expand Down

0 comments on commit 51e87a2

Please sign in to comment.