mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-21 02:31:50 +03:00
20 lines
364 B
C
20 lines
364 B
C
#ifndef __C_BACKEND_H__
|
|
#define __C_BACKEND_H__
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <pthread.h>
|
|
|
|
#include "datatypes.h"
|
|
#include "memoryManagement.h"
|
|
#include "mathFunctions.h"
|
|
#include "runtime.h"
|
|
#include "stringOps.h"
|
|
#include "buffer.h"
|
|
#include "clock.h"
|
|
#include "casts.h"
|
|
#include "conCaseHelper.h"
|
|
#include "prim.h"
|
|
|
|
#endif
|