mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-07-08 05:27:35 +02:00
moving ctype.h and stdio.h includes after u.h include for plan9 (issue 47)
This commit is contained in:
parent
71821fc95a
commit
f1040180f4
1 changed files with 3 additions and 3 deletions
|
@ -14,9 +14,6 @@ extern "C" {
|
||||||
#include "chibi/features.h"
|
#include "chibi/features.h"
|
||||||
#include "chibi/install.h"
|
#include "chibi/install.h"
|
||||||
|
|
||||||
#include <ctype.h>
|
|
||||||
#include <stdio.h>
|
|
||||||
|
|
||||||
#if SEXP_USE_DL
|
#if SEXP_USE_DL
|
||||||
#ifndef __MINGW32__
|
#ifndef __MINGW32__
|
||||||
#include <dlfcn.h>
|
#include <dlfcn.h>
|
||||||
|
@ -40,6 +37,9 @@ typedef unsigned long size_t;
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#include <ctype.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
/* tagging system
|
/* tagging system
|
||||||
* bits end in 00: pointer
|
* bits end in 00: pointer
|
||||||
* 01: fixnum
|
* 01: fixnum
|
||||||
|
|
Loading…
Add table
Reference in a new issue