1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-13 09:31:53 +00:00

Fix code style.

Have type, function name and argument declaration on a single line.
This commit is contained in:
Sven Michael Klose 2024-07-16 01:33:48 +02:00
parent 9558ebad62
commit aed94d2dae

View File

@ -1,7 +1,6 @@
#include <string.h>
char * __fastcall__
stpcpy (char * dst, const char * src)
char * __fastcall__ stpcpy (char * dst, const char * src)
{
strcpy (dst, src);
return dst + strlen (src);