summaryrefslogtreecommitdiff
path: root/wince/fileops.h
diff options
context:
space:
mode:
Diffstat (limited to 'wince/fileops.h')
-rw-r--r--wince/fileops.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/wince/fileops.h b/wince/fileops.h
new file mode 100644
index 00000000..757a34fd
--- /dev/null
+++ b/wince/fileops.h
@@ -0,0 +1,14 @@
+//
+// "Extension" implementation of ANSI C file functions for Windows CE.
+//
+// I (Simon Howard) release this file to the public domain.
+//
+
+#ifndef WINCE_FILEOPS_H
+#define WINCE_FILEOPS_H
+
+int remove(const char *pathname);
+int rename(const char *oldpath, const char *newpath);
+
+#endif /* #ifndef WINCE_FILEOPS_H */
+