Explorar el Código

Add missing fstat & isatty

teensy4-core
PaulStoffregen hace 11 años
padre
commit
f45ddee4e4
Se han modificado 1 ficheros con 13 adiciones y 0 borrados
  1. +13
    -0
      teensy3/mk20dx128.c

+ 13
- 0
teensy3/mk20dx128.c Ver fichero

@@ -356,6 +356,19 @@ int _close(int fd)
return -1;
}

#include <sys/stat.h>

int _fstat(int fd, struct stat *st)
{
st->st_mode = S_IFCHR;
return 0;
}

int _isatty(int fd)
{
return 1;
}

int _lseek(int fd, long long offset, int whence)
{
return -1;

Cargando…
Cancelar
Guardar