mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-19 12:59:21 +08:00
10 lines
209 B
C
10 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;
|
|
}
|