Skip to content

Commit

Permalink
Fix implicit function declaration strcasecmp
Browse files Browse the repository at this point in the history
icons-hash.c uses strcasecmp from strings.h, but does not include it.
At least when building against musl with gcc 15, this is a fatal error.
  • Loading branch information
s-hamann committed Sep 9, 2024
1 parent 14fef03 commit 492a04d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/icons-hash.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@

#include <stdio.h>
#include <string.h>
#include <strings.h>
#include <stdlib.h>
#include <limits.h>
#include "icons.h"
Expand Down

0 comments on commit 492a04d

Please sign in to comment.