rusEFI
The most advanced open source ECU
Loading...
Searching...
No Matches
compiler.h
Go to the documentation of this file.
1#pragma once
2
3#include <stddef.h>
4#include <stdbool.h>
5
6void* malloc(size_t);
7void free(void*);
8
9#define min(a, b) ((a)<(b)?(a):(b))
10
11// TODO: what is this for?
void * malloc(size_t)
void free(void *)