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
pull/494/head
bsergean 2 years ago committed by GitHub
parent 5ecada6b9f
commit d93cd9f8c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      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

Loading…
Cancel
Save