1
0
mirror of https://gitlab.com/80486DX2-66/gists synced 2025-01-12 15:22:07 +05:30

reverse-ramdisk.c: TempFile: reduce #if scope

This commit is contained in:
パチュリー・ノーレッジ 2024-01-03 19:51:43 +03:00
parent 3817607ee4
commit e70d50cee4
Signed by: 80486DX2-66
GPG Key ID: 83631EF27054609B

View File

@ -39,19 +39,15 @@ To-Do: Add thread-safe versions of functions (use postfix `_r`)
exit(EXIT_FAILURE); \
} while (0)
typedef struct {
int ID;
char* file_path;
#if IS_POSIX
typedef struct {
int ID;
char* file_path;
int file;
} TempFile;
#else
typedef struct {
int ID;
char* file_path;
FILE* file;
} TempFile;
#endif
} TempFile;
TempFile* temp_files = NULL;
size_t num_temp_files = 0;