forked from mirror/nnn
Fix implicit function declaration strcasecmp
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.
This commit is contained in:
parent
14fef0323d
commit
492a04d47d
1 changed files with 1 additions and 0 deletions
|
@ -23,6 +23,7 @@
|
|||
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <strings.h>
|
||||
#include <stdlib.h>
|
||||
#include <limits.h>
|
||||
#include "icons.h"
|
||||
|
|
Loading…
Reference in a new issue