Did a few exersises, most of the way through serial_logger.
This commit is contained in:
parent
1f4cc71b96
commit
97fb8de5da
8 changed files with 331 additions and 20 deletions
|
@ -1,8 +1,9 @@
|
|||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
int main()
|
||||
{
|
||||
printf("Hello World\n");
|
||||
int main() {
|
||||
if (printf("Hello World\n") < 0) {
|
||||
return EXIT_FAILURE;
|
||||
}
|
||||
return EXIT_SUCCESS;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue