You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
321 B
C
20 lines
321 B
C
#ifndef _PROFILE_H_
|
|
#define _PROFILE_H_
|
|
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
#include <lauxlib.h>
|
|
#include <time.h>
|
|
#include <assert.h>
|
|
#include <stdbool.h>
|
|
#include <string.h>
|
|
|
|
#include <lua.h>
|
|
|
|
#define prealloc realloc
|
|
#define pmalloc malloc
|
|
#define pfree free
|
|
#define pcalloc calloc
|
|
|
|
#endif |