aboutsummaryrefslogtreecommitdiff
path: root/src/common/include/malloc.h
blob: ec29d697ea90668e1f6b7d360dd2f6f83339f1cd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once

#include <stdint.h>
#include <stddef.h>

// Header is in common/, but implementation is not.

void* malloc(size_t sz);
void free(void* ptr);
void* calloc(size_t nmemb, size_t sz);

/* vim: set ts=4 sw=4 tw=0 noet :*/