Remove redundant include headers.

- stdlib.h
- stddef.h
- stdint.h
- stdarg.h
- limits.h
- float.h
This commit is contained in:
Yukihiro "Matz" Matsumoto
2021-07-24 19:03:32 +09:00
parent 1f90a39799
commit 5c804cf68f
24 changed files with 12 additions and 43 deletions
+3 -5
View File
@@ -4,11 +4,6 @@
** See Copyright Notice in mruby.h
*/
#include <stddef.h>
#include <stdarg.h>
#ifndef MRB_NO_FLOAT
#include <math.h>
#endif
#include <mruby.h>
#include <mruby/array.h>
#include <mruby/class.h>
@@ -25,6 +20,9 @@
#include <mruby/throw.h>
#include <mruby/dump.h>
#include <mruby/presym.h>
#ifndef MRB_NO_FLOAT
#include <math.h>
#endif
#ifdef MRB_NO_STDIO
#if defined(__cplusplus)