Implement KLinkedList; untested

This commit is contained in:
TuxSH
2018-11-01 21:59:06 +01:00
committed by Michael Scire
parent ed982877bd
commit 4078c9a07d
3 changed files with 642 additions and 2 deletions

View File

@@ -828,7 +828,7 @@ strcpy (char *dst0,
#if defined(PREFER_SIZE_OVER_SPEED) || defined(__OPTIMIZE_SIZE__)
char *s = dst0;
while (*dst0++ = *src0++)
while ((*dst0++ = *src0++))
;
return s;