1b8e80941Smrg/**************************************************************************
2b8e80941Smrg *
3b8e80941Smrg * Copyright 2009 VMware, Inc.
4b8e80941Smrg * All Rights Reserved.
5b8e80941Smrg *
6b8e80941Smrg * Permission is hereby granted, free of charge, to any person obtaining a
7b8e80941Smrg * copy of this software and associated documentation files (the
8b8e80941Smrg * "Software"), to deal in the Software without restriction, including
9b8e80941Smrg * without limitation the rights to use, copy, modify, merge, publish,
10b8e80941Smrg * distribute, sub license, and/or sell copies of the Software, and to
11b8e80941Smrg * permit persons to whom the Software is furnished to do so, subject to
12b8e80941Smrg * the following conditions:
13b8e80941Smrg *
14b8e80941Smrg * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15b8e80941Smrg * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16b8e80941Smrg * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
17b8e80941Smrg * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
18b8e80941Smrg * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
19b8e80941Smrg * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
20b8e80941Smrg * USE OR OTHER DEALINGS IN THE SOFTWARE.
21b8e80941Smrg *
22b8e80941Smrg * The above copyright notice and this permission notice (including the
23b8e80941Smrg * next paragraph) shall be included in all copies or substantial portions
24b8e80941Smrg * of the Software.
25b8e80941Smrg *
26b8e80941Smrg **************************************************************************/
27b8e80941Smrg
28b8e80941Smrg
29b8e80941Smrg#ifndef U_FILE_H_
30b8e80941Smrg#define U_FILE_H_
31b8e80941Smrg
32b8e80941Smrg#if defined(PIPE_OS_UNIX)
33b8e80941Smrg#include <unistd.h>
34b8e80941Smrg#endif
35b8e80941Smrg#if defined(PIPE_OS_WINDOWS)
36b8e80941Smrg#include <io.h>
37b8e80941Smrg#endif
38b8e80941Smrg
39b8e80941Smrg#ifdef	__cplusplus
40b8e80941Smrgextern "C" {
41b8e80941Smrg#endif
42b8e80941Smrg
43b8e80941Smrgstatic inline int
44b8e80941Smrgu_file_access(const char *path, int mode) {
45b8e80941Smrg#if defined(PIPE_OS_UNIX)
46b8e80941Smrg	return access(path, mode);
47b8e80941Smrg#elif defined(PIPE_OS_WINDOWS)
48b8e80941Smrg	return _access(path, mode);
49b8e80941Smrg#else
50b8e80941Smrg	return 0;
51b8e80941Smrg#endif
52b8e80941Smrg}
53b8e80941Smrg
54b8e80941Smrg#ifdef	__cplusplus
55b8e80941Smrg}
56b8e80941Smrg#endif
57b8e80941Smrg
58b8e80941Smrg#endif /* U_FILE_H_ */
59