Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Alloc.h « Common - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1a1caa8eff3dc7dcc8b4cec05281dabbdffe74ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Common/Alloc.h

#ifndef __COMMON_ALLOC_H
#define __COMMON_ALLOC_H

#include <stddef.h>

void *MyAlloc(size_t size) throw();
void MyFree(void *address) throw();
void *BigAlloc(size_t size) throw();
void BigFree(void *address) throw();
// void *BigAllocE(size_t size);

#endif