libc.obj:

- added strtod();
 - added "+" to fopen mode; 

git-svn-id: svn://kolibrios.org@9230 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
turbocat
2021-11-01 14:46:28 +00:00
parent 5ab7151d7d
commit bd8a5b6e8e
9 changed files with 144 additions and 34 deletions

View File

@@ -1,7 +1,9 @@
#include "stddef.h"
#include <stdio.h>
#include <stdlib.h>
int fclose(FILE *stream) {
free(stream);
stream = NULL;
return 0;
}