summaryrefslogtreecommitdiff
path: root/src/os_windows/ce_remove.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/os_windows/ce_remove.c')
-rw-r--r--src/os_windows/ce_remove.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/os_windows/ce_remove.c b/src/os_windows/ce_remove.c
new file mode 100644
index 00000000..f955f3b4
--- /dev/null
+++ b/src/os_windows/ce_remove.c
@@ -0,0 +1,26 @@
+/*-
+ * See the file LICENSE for redistribution information.
+ *
+ * Copyright (c) 2012, 2015 Oracle and/or its affiliates. All rights reserved.
+ *
+ * $Id$
+ */
+
+#include "db_config.h"
+
+#include "db_int.h"
+
+/*
+ * remove implementation on WinCE.
+ *
+ * PUBLIC: #ifdef DB_WINCE
+ * PUBLIC: int __ce_remove __P((const char *path));
+ * PUBLIC: #endif
+ */
+
+int
+__ce_remove(path)
+ const char *path;
+{
+ return __os_unlink(NULL, path, 0);
+}