summaryrefslogtreecommitdiff
path: root/firmware/common/file.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/common/file.h')
-rw-r--r--firmware/common/file.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/firmware/common/file.h b/firmware/common/file.h
index 7a7c63d665..59ff717d1d 100644
--- a/firmware/common/file.h
+++ b/firmware/common/file.h
@@ -56,6 +56,7 @@ extern int creat(const char *pathname, int mode);
56extern int write(int fd, void* buf, int count); 56extern int write(int fd, void* buf, int count);
57extern int remove(const char* pathname); 57extern int remove(const char* pathname);
58extern int rename(const char* oldname, const char* newname); 58extern int rename(const char* oldname, const char* newname);
59extern int ftruncate(int fd, unsigned int size);
59 60
60#else 61#else
61#ifdef WIN32 62#ifdef WIN32