All samples use 'int main' and 'return int'

This commit is contained in:
Wayne Parham
2021-06-16 07:35:18 -05:00
parent f98e5f4feb
commit f1f700799b
5 changed files with 21 additions and 6 deletions

View File

@@ -11,7 +11,7 @@
#include <stdio.h>
#include <sym1.h>
void main(void) {
int main(void) {
char c = 0x00;
int d = 0x00;
int l = 0x00;
@@ -37,4 +37,6 @@ void main(void) {
for( d = 0; d < 10 ; d++ ) {
}
}
return 0;
}