summaryrefslogtreecommitdiffstats
path: root/memory.h
blob: ba78b2205f6d4fc2007ccf6854b01ea10fd0b096 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef _MEMORY
#define _MEMORY

#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/resource.h>

void *jadl_malloc(size_t size);
void jadl_free(void *ptr);

long usage();
void usage_print();

#endif