Welcome to mirror list, hosted at ThFree Co, Russian Federation.

semihost_stat.h « riscv « libgloss - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c040fe8e796c63bcf3316436bea758c1f6814521 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
 * Copyright (C) 2020 Embecosm Limited
 * SPDX-License-Identifier: BSD-2-Clause
 */
#include <sys/types.h>

#ifndef RISCV_SEMIHOST_STAT_H
#define RISCV_SEMIHOST_STAT_H

extern int __stat_common (int, struct stat *);
extern int _open (const char *, int, ...);
extern int _close (int);

#endif