blob: 865357d7dfd94df47fba9bbc2a1cb847b5937fa1 [file] [log] [blame] [edit]
/*
* Copyright (c) 2021-2022 Amlogic, Inc. All rights reserved.
*
* SPDX-License-Identifier: MIT
*/
#include <string.h>
#include "aml_strcat.h"
char *strcat(char *dst, const char *src)
{
(void)strcpy(dst + strlen(dst), src);
return dst;
}