4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-19 04:49:25 +08:00
newlib-cygwin/libgloss/riscv/semihost_stat.h
2020-12-16 16:40:34 -05:00

15 lines
295 B
C

/*
* 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