1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2024-11-25 01:34:18 +00:00

Fix build on certain Linux distributions (#2257)

This commit is contained in:
cadmic 2024-10-02 10:40:38 -07:00 committed by GitHub
parent 8ced66d249
commit 801fe22153
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 4 additions and 0 deletions

View file

@ -7,6 +7,7 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. * file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/ */
#include <assert.h> #include <assert.h>
#include <stdlib.h>
#include "xml.h" #include "xml.h"
#include "samplebank.h" #include "samplebank.h"

View file

@ -8,6 +8,7 @@
*/ */
#include <assert.h> #include <assert.h>
#include <stdio.h> #include <stdio.h>
#include <stdlib.h>
#include <string.h> #include <string.h>
#include "xml.h" #include "xml.h"

View file

@ -12,6 +12,7 @@
#include <stdarg.h> #include <stdarg.h>
#include <stdbool.h> #include <stdbool.h>
#include <stdio.h> #include <stdio.h>
#include <stdlib.h>
#include <string.h> #include <string.h>
#include "xml.h" #include "xml.h"

View file

@ -10,6 +10,7 @@
#include <ctype.h> #include <ctype.h>
#include <stdbool.h> #include <stdbool.h>
#include <stdint.h> #include <stdint.h>
#include <stdlib.h>
#include <string.h> #include <string.h>
#include "xml.h" #include "xml.h"