Parcourir la source

Add missing fstat & isatty

main
PaulStoffregen il y a 11 ans
Parent
révision
f45ddee4e4
1 fichiers modifiés avec 13 ajouts et 0 suppressions
  1. +13
    -0
      teensy3/mk20dx128.c

+ 13
- 0
teensy3/mk20dx128.c Voir le fichier

@@ -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;

Chargement…
Annuler
Enregistrer