affbe5f5创建于 2025年3月25日历史提交
/*************
 * 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(const void *ptr, size_t num);
void txfree(const void *ptr);
#endif

#endif