forked from KolibriOS/kolibrios
9 lines
129 B
C
9 lines
129 B
C
|
#include <stdio.h>
|
||
|
#include <string.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
void fclose(FILE* file)
|
||
|
{
|
||
|
free(file->buffer);
|
||
|
free(file);
|
||
|
}
|