From 170e1a8657cd806df13905bbab2c58365b3d62d0 Mon Sep 17 00:00:00 2001 From: Aki Date: Fri, 1 May 2020 17:23:45 +0200 Subject: Added missing header guard --- http.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/http.h b/http.h index 88a793d..0cee2ab 100644 --- a/http.h +++ b/http.h @@ -1,3 +1,6 @@ +#ifndef HTTP_H +#define HTTP_H + enum method { METHOD_GET, @@ -30,3 +33,5 @@ extern const char * status_str[]; int respond_only_status(int, enum status); int respond_with_body(int, enum status, const char *); + +#endif // HTTP_H -- cgit v1.1