File: alloc.c

package info (click to toggle)
liboop 1.0-11
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 2,372 kB
  • ctags: 571
  • sloc: sh: 7,970; ansic: 2,512; makefile: 115
file content (8 lines) | stat: -rw-r--r-- 218 bytes parent folder | download | duplicates (19)
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 */