Projet_SETI_RISC-V/riscv-gnu-toolchain/newlib/libgloss/riscv/semihost-sys_link.c
2023-03-06 14:48:14 +01:00

9 lines
209 B
C

/*
* Copyright (C) 2020 Embecosm Limited
* SPDX-License-Identifier: BSD-2-Clause
*/
/* Establish a new name for an existing file. */
int _link (const char *old_name, const char *new_name)
{
return -1;
}