mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-09 09:41:02 +00:00
12 lines
92 B
C
12 lines
92 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "types.h"
|
||
|
|
|
||
|
|
extern "C" {
|
||
|
|
|
||
|
|
void* malloc(size_t);
|
||
|
|
void free(void*);
|
||
|
|
|
||
|
|
}
|
||
|
|
|