Add header guard to http_lib.h

This commit is contained in:
twinaphex 2014-12-20 22:17:50 +01:00
parent 1917602103
commit 22eaed78a7
2 changed files with 6 additions and 1 deletions

View File

@ -641,6 +641,7 @@ NETPLAY
#ifdef HAVE_NETPLAY
#include "../netplay.c"
#include "../http_lib.c"
#include "../http_intf.c"
#endif
/*============================================================

View File

@ -9,8 +9,10 @@
*
*/
/* declarations */
#ifndef _HTTP_LIB_H
#define _HTTP_LIB_H
/* declarations */
extern char *http_server;
@ -70,3 +72,5 @@ http_retcode http_delete(const char *filename) ;
http_retcode http_head(const char *filename, int *plength, char *typebuf);
#endif
#endif