Skip to content

Commit

Permalink
include stdlib.h in config.c
Browse files Browse the repository at this point in the history
this was always needed but was incidentaly included by iniparser
in iniparser 4.2 the include was removed from iniparser.h causing
build failures

this commit resolves #560
  • Loading branch information
karlstav committed May 1, 2024
1 parent ed4e23d commit e23ebaf
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions config.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@

#include <stdarg.h>
#include <stdbool.h>
#include <stdlib.h>

#include <sys/stat.h>

#define NUMBER_OF_SHADERS 3
Expand Down

0 comments on commit e23ebaf

Please sign in to comment.