diff options
author | Yang Tse <yangsita@gmail.com> | 2012-12-28 12:03:09 +0100 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2012-12-28 18:21:40 +0100 |
commit | ec691ca34bbba56e365c6c923887cae338093f8a (patch) | |
tree | ade04c683ff1e1ace2d101d2ac926abdc5366665 /lib/file.h | |
parent | 709b3506cd9b1efae7d16fe2ae6c03b887536593 (diff) | |
download | curl-ec691ca34bbba56e365c6c923887cae338093f8a.tar.gz |
lib/*.h: use our standard naming scheme for header inclusion guards
Diffstat (limited to 'lib/file.h')
-rw-r--r-- | lib/file.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/file.h b/lib/file.h index 5e3bd7564..997474bc7 100644 --- a/lib/file.h +++ b/lib/file.h @@ -1,6 +1,5 @@ -#ifndef __FILE_H -#define __FILE_H - +#ifndef HEADER_CURL_FILE_H +#define HEADER_CURL_FILE_H /*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | @@ -37,4 +36,6 @@ struct FILEPROTO { #ifndef CURL_DISABLE_FILE extern const struct Curl_handler Curl_handler_file; #endif -#endif + +#endif /* HEADER_CURL_FILE_H */ + |