compiler warning: fix

Fix compiler warning: external definition with no prior declaration
This commit is contained in:
Yang Tse 2011-05-24 17:35:08 +02:00
parent 2ea31b0e6f
commit ec33742d1b
2 changed files with 4 additions and 4 deletions

View File

@ -23,7 +23,7 @@
#include "llist.h"
struct curl_llist *llist;
static struct curl_llist *llist;
static void test_curl_llist_dtor(void *key, void *value)
{

View File

@ -23,9 +23,9 @@
#include "netrc.h"
char login[LOGINSIZE];
char password[PASSWORDSIZE];
char filename[64];
static char login[LOGINSIZE];
static char password[PASSWORDSIZE];
static char filename[64];
static CURLcode unit_setup(void)
{