diff options
Diffstat (limited to 'lib/gl_anylinked_list2.h')
-rw-r--r-- | lib/gl_anylinked_list2.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/gl_anylinked_list2.h b/lib/gl_anylinked_list2.h index 6250c2bc3b..a1037ede2f 100644 --- a/lib/gl_anylinked_list2.h +++ b/lib/gl_anylinked_list2.h @@ -923,7 +923,7 @@ gl_linked_iterator (gl_list_t list) result.list = list; result.p = list->root.next; result.q = &list->root; -#ifdef lint +#if defined GCC_LINT || defined lint result.i = 0; result.j = 0; result.count = 0; @@ -994,7 +994,7 @@ gl_linked_iterator_from_to (gl_list_t list, result.q = node; } -#ifdef lint +#if defined GCC_LINT || defined lint result.i = 0; result.j = 0; result.count = 0; |