Added header file for stddef's size_t in linked_list.h.
This commit is contained in:
parent
26092f4e30
commit
2665ccdbc3
|
|
@ -1,9 +1,10 @@
|
|||
#ifndef LINKED_LIST_H
|
||||
#define LINKED_LIST_H
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stdbool.h>
|
||||
#include <stdarg.h>
|
||||
#include <stddef.h>
|
||||
#include <stdint.h>
|
||||
|
||||
/**
|
||||
* @brief Element struct for linked lists.
|
||||
|
|
|
|||
Loading…
Reference in New Issue