copy struct filenode for msys/cygwin

This commit is contained in:
bebbo 2024-12-08 21:41:36 +01:00
parent 36342cc1ea
commit 35f6c53ce8

View File

@ -18,7 +18,16 @@
#define KPrintF(a,...)
#endif
#include "../../nix/stdio/__filenode.h"
/* objects in ___filelist */
#include <exec/lists.h>
struct filenode {
struct MinNode node;
FILE theFILE;
};
/* own stuff */
extern struct MinList ___filelist; /* List of all fopen'ed files */
extern struct MinList __memorylist; /* List of memory puddles */
extern struct ExecBase * SysBase;