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;
|
||
|
}
|