Changeset 1398 in MondoRescue
- Timestamp:
- May 7, 2007, 2:36:13 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/stable/mondo/src/lib/mr_list.c
r1392 r1398 17 17 struct mr_list *mr_list_alloc(void) { 18 18 19 struct mr_list *list = NULL; 20 19 21 list = mr_malloc(sizeof(struct mr_list)); 20 22 list->first = NULL; … … 25 27 /* Elt of list allocation and initialization */ 26 28 struct mr_list_elt *mr_list_alloc_elt(void *data, void (*mr_free_data)(void *data)) { 29 30 struct mr_list_elt *elt = NULL; 27 31 28 32 elt = mr_malloc(sizeof(struct mr_list_elt));
Note:
See TracChangeset
for help on using the changeset viewer.