diff options
author | Matthieu Herrb <matthieu@herrb.eu> | 2024-05-05 10:59:11 +0200 |
---|---|---|
committer | Matthieu Herrb <matthieu@herrb.eu> | 2024-05-05 10:59:11 +0200 |
commit | ed85f3d22352c8e469ed1e386af3926b4d63efcd (patch) | |
tree | 2162ff552f17fdd9f6c6eba479fa1f2498f99d19 /src/list.h | |
parent | 1e866201f1ccf8fa3bb22c6f5fa723b26c86dbe1 (diff) | |
parent | 79b0987e63daff97ce9ee1dce883df13668a80c6 (diff) |
Merge remote-tracking branch 'origin/master' into obsd
Diffstat (limited to 'src/list.h')
-rw-r--r-- | src/list.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -57,8 +57,8 @@ in this Software without prior written authorization from The Open Group. * **********************************************************************/ -#ifndef _LIST_ -#define _LIST_ +#ifndef LIST_H +#define LIST_H #include <X11/Xlib.h> #include <X11/Xutil.h> @@ -70,9 +70,9 @@ extern void AddToList(name_list ** list_head, char *name, char *ptr); extern void FreeList(name_list ** list); extern int GetColorFromList(name_list * list_head, const char *name, - XClassHint *class, Pixel *ptr); + XClassHint *xclass, Pixel *ptr); extern char *LookInList(name_list * list_head, const char *name, - XClassHint *class); + XClassHint *xclass); extern char *LookInNameList(name_list * list_head, const char *name); -#endif /* _LIST_ */ +#endif /* LIST_H */ |