Skip to content

Commit

Permalink
Fixed warning about reserved macros with a leading underscore
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Dec 2, 2016
1 parent 8e52316 commit 3ca1fe6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions SDL_image.h
Expand Up @@ -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"
Expand Down Expand Up @@ -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_ */

0 comments on commit 3ca1fe6

Please sign in to comment.