mirror of
https://github.com/jarun/nnn.git
synced 2024-11-10 05:13:12 +00:00
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
|
@ -23,6 +23,7 @@
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
#include <strings.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <limits.h>
|
#include <limits.h>
|
||||||
#include "icons.h"
|
#include "icons.h"
|
||||||
|
|
Loading…
Reference in a new issue