software/demo: Fix some warnings.

This commit is contained in:
Florent Kermarrec 2022-04-07 10:50:07 +02:00
parent 8e1265113b
commit 20c9bba8da
2 changed files with 2 additions and 0 deletions

View File

@ -21,6 +21,7 @@
signed char b[1760], z[1760];
void donut(void);
void donut(void) {
int sA=1024,cA=0,sB=1024,cB=0,_;
for (;;) {

View File

@ -1,5 +1,6 @@
#include <stdio.h>
void helloc(void);
void helloc(void) {
printf("C: Hello, world!\n");
}