simulator: fix _read function signature

This commit is contained in:
Joey Castillo 2022-05-09 10:54:13 -04:00
parent a54220d95a
commit 0c87114ee1

View File

@ -63,7 +63,7 @@ int _write(int file, char *ptr, int len) {
return 0; return 0;
} }
// this method could be overridden to read stuff from the USB console? but no need rn. int _read(int file, char *ptr, int len) {
int _read(void) { // TODO: hook to UI
return 0; return 0;
} }