Add filename field to FILE struct

This commit is contained in:
g1n 2021-12-27 20:40:06 +02:00
parent e00f813ee2
commit a96e3c169d
1 changed files with 1 additions and 0 deletions

View File

@ -6,6 +6,7 @@
#include <sys/types.h>
struct FILE {
char *filename;
int fd;
};
typedef struct FILE FILE;