Skip to content

Commit 4634936

Browse files
committed
jimp: include all the necessary libc dependencies
1 parent 4909e40 commit 4634936

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

jimp.h

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22
#ifndef JIMP_H_
33
#define JIMP_H_
44

5+
#include <assert.h>
6+
#include <stdio.h>
7+
#include <stdlib.h>
8+
#include <stdbool.h>
9+
#include <stdarg.h>
10+
#include <string.h>
11+
#include <ctype.h>
12+
513
// TODO: move all diagnostics reporting outside of the library
614
// So the user has more options on how to report things
715

0 commit comments

Comments
 (0)