diff options
author | Florian Frank <flori@ping.de> | 2012-07-25 19:39:44 +0200 |
---|---|---|
committer | Florian Frank <flori@ping.de> | 2012-07-25 19:39:44 +0200 |
commit | baad45aa1f62e8f3cb41e51fde7a96ee9a90c5e4 (patch) | |
tree | 184c7cb1dc401b361a68f41e903f07861d0e0878 | |
parent | c1320061ae68a4695d72ce287373ff1e2e2f0022 (diff) | |
download | json-baad45aa1f62e8f3cb41e51fde7a96ee9a90c5e4.tar.gz |
Fixes #142 to avoid compilation error on AIX
-rw-r--r-- | ext/json/ext/fbuffer/fbuffer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/json/ext/fbuffer/fbuffer.h b/ext/json/ext/fbuffer/fbuffer.h index f7c2b03..0c53296 100644 --- a/ext/json/ext/fbuffer/fbuffer.h +++ b/ext/json/ext/fbuffer/fbuffer.h @@ -2,8 +2,8 @@ #ifndef _FBUFFER_H_ #define _FBUFFER_H_ -#include <assert.h> #include "ruby.h" +#include <assert.h> #ifdef HAVE_RUBY_ENCODING_H #include "ruby/encoding.h" |