File: alloc.c

package info (click to toggle)
liboop 0.8-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 636 kB
  • ctags: 435
  • sloc: sh: 7,375; ansic: 2,426; makefile: 111
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 */