URL
https://opencores.org/ocsvn/scarts/scarts/trunk
Subversion Repositories scarts
[/] [scarts/] [trunk/] [toolchain/] [scarts-newlib/] [newlib-1.17.0/] [libgloss/] [scarts_16/] [close.c] - Rev 14
Go to most recent revision | Compare with Previous | Blame | View Log
#include "devops.h" extern const devops_t *devops_vec[]; int close (int file) { if (file >= NUM_DEVOPS) return 0; return devops_vec[file]->close (file); }
Go to most recent revision | Compare with Previous | Blame | View Log