diff loader/wine/pshpack8.h @ 24422:c98c9e7f3bd0

Remove leading underscores from multiple inclusion guards, leading underscores are reserved in the C standard.
author diego
date Thu, 13 Sep 2007 08:50:21 +0000
parents 3b5f5d1c5041
children f1b223278b20
line wrap: on
line diff
--- a/loader/wine/pshpack8.h	Thu Sep 13 00:17:52 2007 +0000
+++ b/loader/wine/pshpack8.h	Thu Sep 13 08:50:21 2007 +0000
@@ -1,5 +1,5 @@
-#ifndef __WINE_PSHPACK_H
-#define __WINE_PSHPACK_H 8
+#ifndef WINE_PSHPACK_H
+#define WINE_PSHPACK_H 8
 
 #if 0
 //#pragma pack(8)
@@ -7,6 +7,6 @@
 #error "8 as alignment is not supported"
 #endif /* 0 ; !defined(RC_INVOKED) */
 
-#else /* !defined(__WINE_PSHPACK_H) */
+#else /* !defined(WINE_PSHPACK_H) */
 #error "Nested pushing of alignment isn't supported by the compiler"
-#endif /* !defined(__WINE_PSHPACK_H) */
+#endif /* !defined(WINE_PSHPACK_H) */