1/* 2 * stpcpy - copy a string returning pointer to end. 3 * 4 * Copyright (c) 2020, Arm Limited. 5 * SPDX-License-Identifier: MIT 6 */ 7 8#include <picolibc.h> 9 10#define BUILD_STPCPY 1 11 12#include "strcpy.S" 13