We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98f7679 commit 2a2f9ccCopy full SHA for 2a2f9cc
1 file changed
mccode/src/list.c
@@ -43,8 +43,9 @@ struct List_position
43
int index; /* Next element to return. */
44
};
45
46
-typedef struct List_header *List;
47
-typedef struct List_position *List_handle;
+/* Typedefs suppressed, already defined from mccode.h */
+/* typedef struct List_header *List;
48
+ typedef struct List_position *List_handle; */
49
50
/*******************************************************************************
51
* Create a new list.
@@ -233,4 +234,5 @@ List list_copy(List from, void * (*copier)(void *)){
233
234
list_iterate_end(liter);
235
}
236
return to;
-}
237
+}
238
+
0 commit comments