diff options
| author | Jeffrey Hsu <hsu@FreeBSD.org> | 2003-02-10 00:36:27 +0000 |
|---|---|---|
| committer | Jeffrey Hsu <hsu@FreeBSD.org> | 2003-02-10 00:36:27 +0000 |
| commit | 93eb73aa488637e0761a8e413b308bc3006d0564 (patch) | |
| tree | 5f88293aa12629383c47bbf7acd276f5931273cb /sys/libkern/strcat.c | |
| parent | ffb37f33f84e7633774fdd776ec5a527d44c4c43 (diff) | |
Notes
Diffstat (limited to 'sys/libkern/strcat.c')
| -rw-r--r-- | sys/libkern/strcat.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/libkern/strcat.c b/sys/libkern/strcat.c index e517c08fff34..2117be15dbf6 100644 --- a/sys/libkern/strcat.c +++ b/sys/libkern/strcat.c @@ -36,9 +36,7 @@ #include <sys/libkern.h> char * -strcat(s, append) - register char *s; - register const char *append; +strcat(char * __restrict s, const char * __restrict append) { char *save = s; |
