mirror of
https://github.com/Eaglercraft-TeaVM-Fork/eagler-teavm.git
synced 2025-01-08 07:54:11 -08:00
C: add missing include
This commit is contained in:
parent
2bfc5b5305
commit
511160935f
|
@ -5,6 +5,7 @@
|
|||
#include "definitions.h"
|
||||
#include "heapdump.h"
|
||||
#include "memory.h"
|
||||
#include <stdlib.h>
|
||||
|
||||
#if TEAVM_MEMORY_TRACE
|
||||
#include "heaptrace.h"
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
#include "fiber.h"
|
||||
#include "definitions.h"
|
||||
#include <stddef.h>
|
||||
#include <locale.h>
|
||||
#include <time.h>
|
||||
|
||||
#if TEAVM_UNIX
|
||||
#include <signal.h>
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#include "file.h"
|
||||
#include "string.h"
|
||||
#include "time.h"
|
||||
#include "date.h"
|
||||
#include "definitions.h"
|
||||
#include <stdlib.h>
|
||||
#include <errno.h>
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <inttypes.h>
|
||||
#include <wchar.h>
|
||||
|
||||
#if TEAVM_WINDOWS
|
||||
#include <Windows.h>
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#include "memory.h"
|
||||
#include "definitions.h"
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#if TEAVM_UNIX
|
||||
#include <unistd.h>
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#include "time.h"
|
||||
#include "definitions.h"
|
||||
#include <time.h>
|
||||
#include <math.h>
|
||||
|
||||
#if TEAVM_WINDOWS
|
||||
#include <Windows.h>
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
#pragma once
|
||||
#include "virtcall.h"
|
||||
#include "definitions.h"
|
||||
#include <stdlib.h>
|
||||
|
|
Loading…
Reference in New Issue
Block a user