mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2024-12-17 04:12:34 +03:00
8 lines
102 B
C
8 lines
102 B
C
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
int fclose(FILE *stream) {
|
||
|
free(stream);
|
||
|
return 0;
|
||
|
}
|