config.mk cleanup

This commit is contained in:
Ali H. Fardan
2016-09-05 00:56:22 +03:00
parent d3d8b8ee03
commit 1654efe1d6
3 changed files with 0 additions and 78 deletions

View File

@ -1,19 +0,0 @@
/*
* Thanks to lloyd for contribution
*/
extern char concat[4096];
extern void
ccat(const unsigned short int count, ...)
{
va_list ap;
unsigned short int i;
concat[0] = '\0';
va_start(ap, count);
for(i = 0; i < count; i++)
strlcat(concat, va_arg(ap, char *), sizeof(concat));
va_end(ap);
return;
}