create_test_sourcelist: Fix linkage in generated test driver code

Mark private function/global with static linkage.
This commit is contained in:
Sean McBride 2013-11-11 11:46:11 -05:00 committed by Brad King
parent d3f7fa22ed
commit ed675a92a1
1 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ typedef struct
MainFuncPointer func;
} functionMapEntry;
functionMapEntry cmakeGeneratedFunctionMapEntries[] = {
static functionMapEntry cmakeGeneratedFunctionMapEntries[] = {
@CMAKE_FUNCTION_TABLE_ENTIRES@
{0,0}
};
@ -26,7 +26,7 @@ functionMapEntry cmakeGeneratedFunctionMapEntries[] = {
/* Allocate and create a lowercased copy of string
(note that it has to be free'd manually) */
char* lowercase(const char *string)
static char* lowercase(const char *string)
{
char *new_string, *p;