Chromium Code Reviews| Index: fusl/src/string/wcpcpy.c |
| diff --git a/fusl/src/string/wcpcpy.c b/fusl/src/string/wcpcpy.c |
| index ef401343323b43c6216aa5c6621a8eb43486374b..78a0f1da3147b222cd5e6b9e41b1589df4633b60 100644 |
| --- a/fusl/src/string/wcpcpy.c |
| +++ b/fusl/src/string/wcpcpy.c |
| @@ -1,6 +1,5 @@ |
| #include <wchar.h> |
| -wchar_t *wcpcpy(wchar_t *restrict d, const wchar_t *restrict s) |
| -{ |
| - return wcscpy(d, s) + wcslen(s); |
| +wchar_t* wcpcpy(wchar_t* restrict d, const wchar_t* restrict s) { |
| + return wcscpy(d, s) + wcslen(s); |
| } |