From 06d8f16b87208abc6dfde1341e992e0811c31fda Mon Sep 17 00:00:00 2001 From: Daniel Gustafsson Date: Tue, 23 Oct 2018 10:02:24 +0200 Subject: headers: end all headers with guard comment Most headerfiles end with a /* */ comment, but it was missing from some. The comment isn't the most important part of our code documentation but consistency has an intrinsic value in itself. This adds header guard comments to the files that were lacking it. Closes #3158 Reviewed-by: Jay Satiro Reviewed-by: Daniel Stenberg --- lib/doh.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/doh.h') diff --git a/lib/doh.h b/lib/doh.h index 5f879e50e..83c79bc5d 100644 --- a/lib/doh.h +++ b/lib/doh.h @@ -102,4 +102,4 @@ DOHcode doh_decode(unsigned char *doh, struct dohentry *d); void de_cleanup(struct dohentry *d); #endif -#endif +#endif /* HEADER_CURL_DOH_H */ -- cgit v1.2.3