mirror of https://github.com/ArduPilot/ardupilot
AP_Filesystem: fixed warning with tmpnam
This commit is contained in:
parent
21cd4f1976
commit
e6540681f2
|
@ -50,7 +50,7 @@ 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);
|
||||
char *tmpnam(char s[L_tmpnam]);
|
||||
|
||||
#undef stdin
|
||||
#undef stdout
|
||||
|
|
Loading…
Reference in New Issue