File: memory.h

package info (click to toggle)
iqtree 2.0.7%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 14,620 kB
  • sloc: cpp: 142,571; ansic: 57,789; sh: 275; python: 242; makefile: 95
file content (12 lines) | stat: -rwxr-xr-x 235 bytes parent folder | download | duplicates (25)
1
2
3
4
5
6
7
8
9
10
11
12
#define mymalloc(a) (_mymalloc((a), __LINE__, __FILE__))

#ifndef ANSI_ARGS
#ifdef __STDC__
#define ANSI_ARGS(args) args
#else
#define ANSI_ARGS(args) ()
#endif
#endif

void *_mymalloc ANSI_ARGS((long size, int line, char *message));