AP_Filesystem: remove dependency on tmpnam

tmpnam is never linked and not necessary, and naming it/redefining it
introduces problems on platforms that do have a definition.
This commit is contained in:
Thomas Watson 2024-09-23 10:55:49 -05:00 committed by Peter Barker
parent 8b63488431
commit 380d8ca6fc
1 changed files with 0 additions and 1 deletions

View File

@ -58,7 +58,6 @@ long apfs_ftell(APFS_FILE *stream);
APFS_FILE *apfs_freopen(const char *pathname, const char *mode, APFS_FILE *stream);
int apfs_remove(const char *pathname);
int apfs_rename(const char *oldpath, const char *newpath);
char *tmpnam(char s[L_tmpnam]);
#undef stdin
#undef stdout