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 Jan 8, 2024
1 parent 894af1c commit f762545
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 f762545

Please sign in to comment.