Skip to content

Commit

Permalink
remove use of reserved identifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
tjko committed Aug 4, 2016
1 parent c12dec2 commit 604677c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions jpegoptim.h
Expand Up @@ -3,8 +3,8 @@
* JPEGoptim headers
*/

#ifndef _JPEGOPTIM_H
#define _JPEGOPTIM_H 1
#ifndef JPEGOPTIM_H
#define JPEGOPTIM_H 1

#ifdef __cplusplus
extern "C" {
Expand Down Expand Up @@ -83,4 +83,4 @@ void jpeg_memory_dest (j_compress_ptr cinfo, unsigned char **bufptr, size_t *buf
}
#endif

#endif /* _JPEGOPTIM_H */
#endif /* JPEGOPTIM_H */
6 changes: 3 additions & 3 deletions win32_compat.h
Expand Up @@ -5,8 +5,8 @@
* Thanks to Javier Gutiérrez Chamorro for Windows support.
*/

#ifndef _WIN32_COMPAT_H
#define _WIN32_COMPAT_H 1
#ifndef WIN32_COMPAT_H
#define WIN32_COMPAT_H 1

#ifdef __cplusplus
extern "C" {
Expand Down Expand Up @@ -47,4 +47,4 @@ extern "C" {
}
#endif

#endif /* _WIN32_COMPAT_H */
#endif /* WIN32_COMPAT_H */

0 comments on commit 604677c

Please sign in to comment.