uIP webserver: Fix a data declaration in a header file.

This commit is contained in:
Gregory Nutt 2016-07-11 13:05:55 -06:00
parent 2cdcf98ab1
commit 68064514b9

View File

@ -189,6 +189,9 @@ extern "C"
# define EXTERN extern
#endif
EXTERN const struct httpd_fsdata_file g_httpdfs_root[];
EXTERN const int g_httpd_numfiles;
/****************************************************************************
* Public Function Prototypes
****************************************************************************/
@ -198,9 +201,6 @@ int httpd_listen(void);
void httpd_cgi_register(struct httpd_cgi_call *cgi_call);
uint16_t httpd_fs_count(char *name);
const struct httpd_fsdata_file g_httpdfs_root[];
const int g_httpd_numfiles;
#undef EXTERN
#ifdef __cplusplus
}