aboutsummaryrefslogblamecommitdiff
path: root/src/common/include/malloc.h
blob: e55c25ed9c43924dcfa32668979aa61242984ee0 (plain) (tree)
1
2
3
4
5
6
7
8
9








                                                   
                                      
                                    

                                   
#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);
void* realloc(void* ptr, size_t sz);

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