File: alloc.c

package info (click to toggle)
liboop 1.0-9
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 1,660 kB
  • sloc: sh: 7,970; ansic: 2,512; makefile: 115
file content (8 lines) | stat: -rw-r--r-- 218 bytes parent folder | download | duplicates (20)
1
2
3
4
5
6
7
8
#include "oop.h"
#include <stdlib.h>

void *(*oop_malloc)(size_t) = malloc;
void (*oop_free)(void *) = free;
void *(*oop_realloc)(void *,size_t) = realloc;

int _oop_continue,_oop_error; /* this has to go somewhere */