Skip to content

Commit

Permalink
swap non-windows headers with typedefs
Browse files Browse the repository at this point in the history
  • Loading branch information
wiredfool committed Dec 20, 2017
1 parent 00b2783 commit 681a68a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions libImaging/raqm.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,12 @@
#include "config.h"
#endif

#include <stdbool.h>
#include <stdint.h>
#ifndef bool
typedef int bool;
#endif
#ifndef uint32_t
typedef UINT32 uint32_t;
#endif
#include <ft2build.h>
#include FT_FREETYPE_H

Expand Down

0 comments on commit 681a68a

Please sign in to comment.