Skip to content
Snippets Groups Projects
Commit 1529cf18 authored by rswindell's avatar rswindell
Browse files

Made truncsp static to avoid conflict with misc.c when statically linked together.

parent d1d2e07d
No related branches found
No related tags found
No related merge requests found
......@@ -284,7 +284,7 @@ static int sockprintf(SOCKET sock, char *fmt, ...)
/************************************************/
/* Truncates white-space chars off end of 'str' */
/************************************************/
void truncsp(char *str)
static void truncsp(char *str)
{
uint c;
......
......@@ -45,7 +45,7 @@ bbs_startup_t bbs_startup;
/************************************************/
/* Truncates white-space chars off end of 'str' */
/************************************************/
void truncsp(char *str)
static void truncsp(char *str)
{
uint c;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment