From: Daniel Stenberg Date: Fri, 2 Dec 2005 23:23:49 +0000 (+0000) Subject: Yang Tse adjusted the multiple header inclusion prevention definition X-Git-Tag: curl-7_15_1~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=21709e15575e9afa4e6435bb279d90854cf9f163;p=thirdparty%2Fcurl.git Yang Tse adjusted the multiple header inclusion prevention definition H_MPRINTF to our more used style __CURL_MPRINTF_H --- diff --git a/include/curl/mprintf.h b/include/curl/mprintf.h index 8559b18673..e16961ec62 100644 --- a/include/curl/mprintf.h +++ b/include/curl/mprintf.h @@ -1,3 +1,5 @@ +#ifndef __CURL_MPRINTF_H +#define __CURL_MPRINTF_H /*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | @@ -21,9 +23,6 @@ * $Id$ ***************************************************************************/ -#ifndef H_MPRINTF -#define H_MPRINTF - #include #include /* needed for FILE */ @@ -53,4 +52,4 @@ CURL_EXTERN char *curl_mvaprintf(const char *format, va_list args); # define vaprintf curl_mvaprintf #endif -#endif /* H_MPRINTF */ +#endif /* __CURL_MPRINTF_H */