Skip to content

Commit

Permalink
Add missing header include
Browse files Browse the repository at this point in the history
Needed for size_t and strrchr(3) while processing with a LSP.
  • Loading branch information
cgzones committed Dec 29, 2023
1 parent 875b082 commit fb346a2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/util.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
#define UTIL_H

#include <stdbool.h>
#include <stddef.h>
#include <string.h>

// ignore conversions discarding const specifier, e.g.
// const char [] -> char *
Expand Down

0 comments on commit fb346a2

Please sign in to comment.