mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2024-12-18 21:02:34 +03:00
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);
|
||
|
}
|