top: restored static to scat(), not needed in top_nls.c

This commit is contained in:
Jim Warner 2011-10-28 10:49:06 -05:00 committed by Craig Small
parent fe7069dff0
commit 3d1f469995

View File

@ -276,7 +276,7 @@ static const char *fmtmk (const char *fmts, ...) {
/*
* This guy is just our way of avoiding the overhead of the standard
* strcat function (should the caller choose to participate) */
inline char *scat (char *dst, const char *src) {
static inline char *scat (char *dst, const char *src) {
while (*dst) dst++;
while ((*(dst++) = *(src++)));
return --dst;