2020-02-06 00:43:02 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2020 Intel Corporation
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
namespace NEO {
|
|
|
|
namespace SysCalls {
|
|
|
|
int close(int fileDescriptor);
|
2020-02-07 21:32:02 +08:00
|
|
|
int open(const char *file, int flags);
|
|
|
|
} // namespace SysCalls
|
2020-02-06 00:43:02 +08:00
|
|
|
} // namespace NEO
|