include/stringop: Fix missing include

This commit is contained in:
Alexander Orzechowski 2023-11-23 12:33:00 -05:00
parent 128b6253a9
commit 905dd141f4
2 changed files with 1 additions and 1 deletions

View file

@ -1,6 +1,5 @@
#define _POSIX_C_SOURCE 200809L
#include <ctype.h>
#include <stdarg.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>

View file

@ -1,6 +1,7 @@
#ifndef _SWAY_STRINGOP_H
#define _SWAY_STRINGOP_H
#include <stdarg.h>
#include <stdbool.h>
#include <stddef.h>
#include "list.h"