diff options
author | Ulrich Sibiller <uli42@gmx.de> | 2016-07-26 23:18:33 +0200 |
---|---|---|
committer | Ulrich Sibiller <uli42@gmx.de> | 2016-10-10 22:52:29 +0200 |
commit | ef5565f8ed86f05ca20ff1bfc5892fb8a2c557bc (patch) | |
tree | 27e3c3cd35c7d9460a67c586a980c8d415c41b8a /nx-X11/lib/X11/Xutil.h | |
parent | 5930731421ae76931301302c515d75001b9f72a0 (diff) | |
download | nx-libs-ef5565f8ed86f05ca20ff1bfc5892fb8a2c557bc.tar.gz nx-libs-ef5565f8ed86f05ca20ff1bfc5892fb8a2c557bc.tar.bz2 nx-libs-ef5565f8ed86f05ca20ff1bfc5892fb8a2c557bc.zip |
improve header guards
Upstream has changed the header guards. We adapt them to prevent double inclusion.
Diffstat (limited to 'nx-X11/lib/X11/Xutil.h')
-rw-r--r-- | nx-X11/lib/X11/Xutil.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/nx-X11/lib/X11/Xutil.h b/nx-X11/lib/X11/Xutil.h index f42721244..99a6dccf7 100644 --- a/nx-X11/lib/X11/Xutil.h +++ b/nx-X11/lib/X11/Xutil.h @@ -46,9 +46,9 @@ SOFTWARE. ******************************************************************/ -#if !defined(_XUTIL_H_) && !defined(_X11_XUTIL_H_) -#define _XUTIL_H_ +#if !defined(_X11_XUTIL_H_) && !defined(_XUTIL_H_) #define _X11_XUTIL_H_ +#define _XUTIL_H_ /* You must include <nx-X11/Xlib.h> before including this file */ #include <nx-X11/Xlib.h> @@ -823,4 +823,4 @@ extern int XXorRegion( _XFUNCPROTOEND -#endif /* _XUTIL_H_ */ +#endif /* !defined(_X11_XUTIL_H_) && !defined(_XUTIL_H_) */ |