File: util.h

package info (click to toggle)
sprng 2.0a-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 3,076 kB
  • ctags: 2,031
  • sloc: ansic: 30,361; fortran: 1,618; makefile: 566; cpp: 58; sh: 5
file content (18 lines) | stat: -rw-r--r-- 298 bytes parent folder | download | duplicates (13)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef _util_h
#define _util_h

#include <stddef.h>

#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((size_t size, int line, char *message));

#endif