From 3ca1fe6ea8f163a14fdf906f0a465833e3d0b04b Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Fri, 2 Dec 2016 02:28:19 -0800 Subject: [PATCH] Fixed warning about reserved macros with a leading underscore --- SDL_image.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/SDL_image.h b/SDL_image.h index f6544830..31f59358 100644 --- a/SDL_image.h +++ b/SDL_image.h @@ -21,8 +21,8 @@ /* A simple library to load images of various formats as SDL surfaces */ -#ifndef _SDL_IMAGE_H -#define _SDL_IMAGE_H +#ifndef SDL_IMAGE_H_ +#define SDL_IMAGE_H_ #include "SDL.h" #include "SDL_version.h" @@ -142,4 +142,4 @@ extern DECLSPEC int SDLCALL IMG_SavePNG_RW(SDL_Surface *surface, SDL_RWops *dst, #endif #include "close_code.h" -#endif /* _SDL_IMAGE_H */ +#endif /* SDL_IMAGE_H_ */