Added header file for stddef's size_t in linked_list.h.

This commit is contained in:
Ulysse Cura 2026-07-18 00:02:04 +02:00
parent 26092f4e30
commit 2665ccdbc3
1 changed files with 2 additions and 1 deletions

View File

@ -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.