mirror of
https://git.planet-casio.com/Vhex-Kernel-Core/fxlibc.git
synced 2025-04-19 17:37:09 +02:00
10 lines
141 B
C
10 lines
141 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
#include "fileutil.h"
|
|
|
|
int fclose(FILE *fp)
|
|
{
|
|
__fp_close(fp, true);
|
|
return 0;
|
|
}
|