1
0
mirror of https://github.com/moparisthebest/curl synced 2024-11-10 19:45:04 -05:00

build: inclusion guard

Enclose header file in an inclusion guard
This commit is contained in:
Yang Tse 2011-05-24 15:42:02 +02:00
parent 512b2f7740
commit a41c7f9736

View File

@ -1,3 +1,5 @@
#ifndef HEADER_CURL_HTTP_PROXY_H
#define HEADER_CURL_HTTP_PROXY_H
/*************************************************************************** /***************************************************************************
* _ _ ____ _ * _ _ ____ _
* Project ___| | | | _ \| | * Project ___| | | | _ \| |
@ -31,3 +33,5 @@ CURLcode Curl_proxyCONNECT(struct connectdata *conn,
#else #else
#define Curl_proxyCONNECT(x,y,z,w) CURLE_NOT_BUILT_IN #define Curl_proxyCONNECT(x,y,z,w) CURLE_NOT_BUILT_IN
#endif #endif
#endif /* HEADER_CURL_HTTP_PROXY_H */