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

@@ -20,8 +20,8 @@
#define TAPIO_ADDRESS 0xE000
#define TAPIO_MAX_SIZE 0x0FFF
void main(void) {
cha c = 0x00;
int main(void) {
char c = 0x00;
int l = 0x00;
int p = 0x00;
int error = 0x00;
@@ -183,6 +183,10 @@ void main(void) {
}
}
}
free( buffer );
puts( "\nEnjoy your day!\n" );
return 0;
}