diff options
author | Daniel Gustafsson <daniel@yesql.se> | 2018-10-23 10:02:24 +0200 |
---|---|---|
committer | Daniel Gustafsson <daniel@yesql.se> | 2018-10-23 10:02:24 +0200 |
commit | 06d8f16b87208abc6dfde1341e992e0811c31fda (patch) | |
tree | 2b42cdc6218f1439a5221f730f6c5f24e9d9ebff /lib/curl_path.h | |
parent | a023dfa19abd581f9645d218519ec8843564eb47 (diff) |
headers: end all headers with guard comment
Most headerfiles end with a /* <headerguard> */ 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 <raysatiro@yahoo.com>
Reviewed-by: Daniel Stenberg <daniel@haxx.se>
Diffstat (limited to 'lib/curl_path.h')
-rw-r--r-- | lib/curl_path.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/curl_path.h b/lib/curl_path.h index 5ee4ff367..636c37f20 100644 --- a/lib/curl_path.h +++ b/lib/curl_path.h @@ -44,4 +44,4 @@ CURLcode Curl_getworkingpath(struct connectdata *conn, char **path); CURLcode Curl_get_pathname(const char **cpp, char **path, char *homedir); -#endif +#endif /* HEADER_CURL_PATH_H */ |