ngspice/src/misc/alloc.h

16 lines
249 B
C
Raw Normal View History

2000-04-27 22:03:57 +02:00
/*************
* Header file for alloc.c
* 1999 E. Rouat
************/
#ifndef ALLOC_H_INCLUDED
#define ALLOC_H_INCLUDED
#ifndef WANT_GC
2000-04-27 22:03:57 +02:00
void * tmalloc(size_t num);
void * trealloc(void *ptr, size_t num);
void txfree(void *ptr);
#endif
2000-04-27 22:03:57 +02:00
#endif