forked from KolibriOS/kolibrios
ace23ebbe2
git-svn-id: svn://kolibrios.org@6433 a494cfbc-eb01-0410-851d-a64ba20cac60
19 lines
256 B
C
19 lines
256 B
C
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
|
|
int fclose(FILE* file)
|
|
{
|
|
if(!file)
|
|
{
|
|
errno = E_INVALIDPTR;
|
|
return EOF;
|
|
}
|
|
|
|
if(file->buffer)
|
|
free(file->buffer);
|
|
free(file);
|
|
|
|
return 0;
|
|
}
|