- 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.
8 lines
196 B
C
8 lines
196 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
FILE *fopen(const char *restrict _name, const char *restrict _mode) {
|
|
FILE *out = malloc(sizeof(FILE));
|
|
return freopen(_name, _mode, out);
|
|
}
|