2 * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
3 * See the copyright notice in the ACK home directory, in the file "Copyright".
10 strncat(char *ret
, register const char *s2
, size_t n
)
12 register char *s1
= ret
;
18 while (*s1
++ = *s2
++) {
19 if (--n
> 0) continue;