- Move source code from `trunk` into program root directory. - Update build files and include paths. - Note: Line endings standardised from `CRLF` > `LF`, so best to view diffs with whitespace changes hidden.
10 lines
140 B
C
10 lines
140 B
C
#include "stddef.h"
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
int fclose(FILE *stream) {
|
|
free(stream);
|
|
stream = NULL;
|
|
return 0;
|
|
}
|