Projet_SETI_RISC-V/riscv-gnu-toolchain/newlib/libgloss/mt/close.c
2023-03-06 14:48:14 +01:00

12 lines
149 B
C

#include <_ansi.h>
#include <sys/types.h>
#include <sys/stat.h>
#include "trap.h"
int
close (int file)
{
return TRAP0 (SYS_close, file, 0, 0);
}