diff options
author | Tim Wiederhake <twied@gmx.net> | 2023-12-27 23:08:57 +0100 |
---|---|---|
committer | Tim Wiederhake <twied@gmx.net> | 2024-01-01 12:21:24 +0100 |
commit | a752fdad02f5eba89c53a53e4a212cf31cbf4670 (patch) | |
tree | 6ba74a7cc8011fba05e1a3979862d248a1219d0b /src/resize.h | |
parent | 98316f44c03edaa55bf75c4ba2b3b9e3ec16efc6 (diff) |
Fix include guard names
Names that begin with an underscore ('_') are reserved. Follow the usual
practice of naming the include guard of file "foo.h" "FOO_H", as is already
done in "icons.h".
Signed-off-by: Tim Wiederhake <twied@gmx.net>
Diffstat (limited to 'src/resize.h')
-rw-r--r-- | src/resize.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/resize.h b/src/resize.h index a16a238..5ca8730 100644 --- a/src/resize.h +++ b/src/resize.h @@ -57,8 +57,8 @@ in this Software without prior written authorization from The Open Group. * **********************************************************************/ -#ifndef _RESIZE_ -#define _RESIZE_ +#ifndef RESIZE_H +#define RESIZE_H #include "twm.h" @@ -77,4 +77,4 @@ extern void SetupFrame(TwmWindow *tmp_win, int x, int y, int w, int h, int bw, extern void SetupWindow(TwmWindow *tmp_win, int x, int y, int w, int h, int bw); extern void StartResize(XEvent *evp, TwmWindow *tmp_win, Bool fromtitlebar); -#endif /* _RESIZE_ */ +#endif /* RESIZE_H */ |