mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-15 14:23:32 +03:00
60d597fccd
Pragma once is supported by all compilers for the last ten years. Better use it instead of include guards (which use different styles in different files).
13 lines
274 B
C
13 lines
274 B
C
#pragma once
|
|
|
|
#include "cBackend.h"
|
|
|
|
void missing_ffi();
|
|
|
|
Value *apply_closure(Value *, Value *arg);
|
|
void push_Arglist(Value_Arglist *arglist, Value *arg);
|
|
|
|
int extractInt(Value *);
|
|
Value *trampoline(Value *closure);
|
|
Value *tailcall_apply_closure(Value *_clos, Value *arg);
|