diff options
author | Daniel Stenberg <daniel@haxx.se> | 2005-12-02 23:23:49 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2005-12-02 23:23:49 +0000 |
commit | 21709e15575e9afa4e6435bb279d90854cf9f163 (patch) | |
tree | 36f7d0ff1e5aad769e82659b91dac96cb4a937a7 | |
parent | 9c312637d1875602bdb8f69c6e9741ffc5d4e5af (diff) |
Yang Tse adjusted the multiple header inclusion prevention definition
H_MPRINTF to our more used style __CURL_MPRINTF_H
-rw-r--r-- | include/curl/mprintf.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/include/curl/mprintf.h b/include/curl/mprintf.h index 8559b1867..e16961ec6 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 <stdarg.h> #include <stdio.h> /* 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 */ |