diff options
| author | Thomas Voss <mail@thomasvoss.com> | 2024-01-08 19:18:57 +0100 |
|---|---|---|
| committer | Thomas Voss <mail@thomasvoss.com> | 2024-01-08 19:18:57 +0100 |
| commit | 3f2d2e2ec3e688e46f8c95ea7a168d38bd545a0b (patch) | |
| tree | 198af1b38da16ecfab22860977aae0551e7bcc71 | |
| parent | 9dc05615d2d8fa220c7c8ebe54d16ecaad358a37 (diff) | |
Include headers
| -rw-r--r-- | da.h | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -67,6 +67,13 @@ #ifndef MANGO_DA_H #define MANGO_DA_H +#include <err.h> +#include <errno.h> +#include <stddef.h> +#include <stdint.h> +#include <stdlib.h> +#include <string.h> + #define DA_ALLOC(p, n) \ do { \ if ((n) && SIZE_MAX / (n) < sizeof(*(p))) { \ |