Get more Python tests passing (#141)

This commit is contained in:
Justine Tunney 2021-08-16 15:26:31 -07:00
parent 916f19eea1
commit 59e1c245d1
141 changed files with 3536 additions and 1203 deletions

View file

@ -27,5 +27,6 @@
* @asyncsignalsafe
*/
char16_t *strcat16(char16_t *d, const char16_t *s) {
return strcpy16(d + strlen16(d), s);
strcpy16(d + strlen16(d), s);
return d;
}