Skip to content
Snippets Groups Projects
Commit 2f3e5d06 authored by Ion-Dorinel FILIP (25005)'s avatar Ion-Dorinel FILIP (25005)
Browse files

Fixed implicit declaration of memcpy

parent 46bee029
No related branches found
No related tags found
No related merge requests found
#include "list.h"
#include <stdlib.h>
#include <string.h>
list* create_list() {
list* l = (list *)calloc(1, sizeof(list));
......@@ -57,4 +58,4 @@ void add_list_elem(list* list, void* info, int info_len, int seq) {
}
list->size++;
}
\ No newline at end of file
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment