8000 SLIST -> LIST (prevent conflict with the real slist.h) · fragglet/c-algorithms@0e1e4b8 · GitHub
[go: up one dir, main page]

Skip to content

Commit 0e1e4b8

Browse files
committed
SLIST -> LIST (prevent conflict with the real slist.h)
1 parent 0fa5612 commit 0e1e4b8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/list.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ POSSIBILITY OF SUCH DAMAGE.
6363
*
6464
*/
6565

66-
#ifndef ALGORITHM_SLIST_H
67-
#define ALGORITHM_SLIST_H
66+
#ifndef ALGORITHM_LIST_H
67+
#define ALGORITHM_LIST_H
6868

6969
/**
7070
* Represents an entry in a doubly-linked list. The empty list is
@@ -252,5 +252,5 @@ ListEntry *list_find_data(ListEntry *list,
252252
ListEqualFunc callback,
253253
void *data);
254254

255-
#endif /* #ifndef ALGORITHM_SLIST_H */
255+
#endif /* #ifndef ALGORITHM_LIST_H */
256256

0 commit comments

Comments
 (0)
0