mirror of
https://github.com/lammertb/libhttp.git
synced 2025-12-22 04:02:04 +03:00
Avoid the missing-prototypes warning
Warning option -Wmissing-prototypes raises a warning for all functions that are neither static nor in a header. Some functions should be available only for main.c but not in the official header (civetweb.h) since they are subject to changes. In order to avoid this warning, additional headers outside the include folder must be added.
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
#include <lua.h>
|
||||
#include <lauxlib.h>
|
||||
#include "lua_civet.h"
|
||||
|
||||
#ifdef _WIN32
|
||||
static void *
|
||||
|
||||
Reference in New Issue
Block a user