mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2025-09-17 07:56:02 -04: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);
|
|
} |