summaryrefslogtreecommitdiff
path: root/src/os_windows/ce_remove.c
blob: f955f3b4e4d782d99a9ecab11041a23fa8f5db62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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);
}