top: restored static to scat(), not needed in top_nls.c
This commit is contained in:
parent
fe7069dff0
commit
3d1f469995
@ -276,7 +276,7 @@ static const char *fmtmk (const char *fmts, ...) {
|
|||||||
/*
|
/*
|
||||||
* This guy is just our way of avoiding the overhead of the standard
|
* This guy is just our way of avoiding the overhead of the standard
|
||||||
* strcat function (should the caller choose to participate) */
|
* 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) dst++;
|
||||||
while ((*(dst++) = *(src++)));
|
while ((*(dst++) = *(src++)));
|
||||||
return --dst;
|
return --dst;
|
||||||
|
Loading…
Reference in New Issue
Block a user