1 #define mymalloc(a) (_mymalloc((a), __LINE__, __FILE__))
2 
3 #ifndef ANSI_ARGS
4 #ifdef __STDC__
5 #define ANSI_ARGS(args) args
6 #else
7 #define ANSI_ARGS(args) ()
8 #endif
9 #endif
10 
11 void *_mymalloc ANSI_ARGS((long size, int line, char *message));
12 
13