ae2f_docs
PgAlloc.h
1/**
2 * @file MAlloc.h
3 * Simple memory allocation. (same as malloc. process independent) \n
4 * Uses the length of the memory for freeing.
5 *
6 * ae2f_SysMAlloc
7 * ae2f_SysFree
8 * */
9#ifndef ae2f_Sys_MAlloc_h
10#define ae2f_Sys_MAlloc_h
11
12#include <ae2f/Cast.h>
13#include "../Sys.h"
14#include "./PgAlloc.auto.h"
15
16#if ae2f_Sys_WIN(!)0
17#else
18#include <sys/mman.h>
19#include <unistd.h>
20#endif
21
22#endif
#define ae2f_Sys_WIN
Definition Sys.h:17
#define ae2f_MAC(...)
Definition mac.h:28