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> #include <string.h>
char * __fastcall__ char * __fastcall__ stpcpy (char * dst, const char * src)
stpcpy (char * dst, const char * src)
{ {
strcpy (dst, src); strcpy (dst, src);
return dst + strlen (src); return dst + strlen (src);