Avoid tmpfile().

- tmpfile() tries to create files in the C: root dir on Windows where users usually don't have access.
- tmpnam() uses the curent dir which doesn't seem to be a good idea either.
- tempnam(NULL,NULL) is supposed to be cleverer.
This commit is contained in:
Oliver Schmidt
2014-02-09 01:11:11 +01:00
parent 7b6a6d168c
commit bec75d9e62
14 changed files with 38 additions and 30 deletions

View File

@@ -51,9 +51,6 @@
/* Name of the library file */
extern const char* LibName;
/* File descriptor for the new library file */
extern FILE* NewLib;
/*****************************************************************************/