Project

General

Profile

Download (215 Bytes) Statistics
| Branch: | Tag: | Revision:
1
#include <stdlib.h>
2
#include "arrow.hpp"
3

    
4
struct _arrow_mem *_arrow_alloc() {
5
  struct _arrow_mem *_alloc;
6
  _alloc = (struct _arrow_mem *) malloc(sizeof(struct _arrow_mem *));
7
  assert (_alloc);
8
  return _alloc;
9
}
(3-3/18)