You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
250 B
15 lines
250 B
/*************
|
|
* Header file for alloc.c
|
|
* 1999 E. Rouat
|
|
************/
|
|
|
|
#ifndef ngspice_ALLOC_H
|
|
#define ngspice_ALLOC_H
|
|
|
|
#ifndef HAVE_LIBGC
|
|
void * tmalloc(size_t num);
|
|
void * trealloc(void *ptr, size_t num);
|
|
void txfree(void *ptr);
|
|
#endif
|
|
|
|
#endif
|