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

memory.h « vowpalwabbit - github.com/moses-smt/vowpal_wabbit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5cbfa2a5bd6a97865674761d6c42f1d6a275088a (plain)
1
2
3
4
5
6
7
8
#ifndef MEMORY_H
#define MEMORY_H

void* calloc_or_die(size_t nmemb, size_t size);

void free_it(void* ptr);

#endif