From d93cd9f8c6f2a7301434d21c674353ed41033c75 Mon Sep 17 00:00:00 2001 From: bsergean Date: Sun, 23 Oct 2022 06:06:14 -0700 Subject: [PATCH] Add include guards to ares_data.h (#491) All the other header files in the src/lib folder do have an include guard so it look like an overthought. Fix By: @bsergean --- src/lib/ares_data.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/lib/ares_data.h b/src/lib/ares_data.h index 6b9dd9f8..54d729d0 100644 --- a/src/lib/ares_data.h +++ b/src/lib/ares_data.h @@ -1,3 +1,6 @@ +#ifndef __ARES_DATA_H +#define __ARES_DATA_H + /* Copyright (C) 2009-2013 by Daniel Stenberg * @@ -74,3 +77,5 @@ struct ares_data { void *ares_malloc_data(ares_datatype type); + +#endif // __ARES_DATA_H