1 /*
2  *  SMAPI; Modified Squish MSGAPI
3  *
4  *  Squish MSGAPI0 is copyright 1991 by Scott J. Dudley.  All rights reserved.
5  *  Modifications released to the public domain.
6  *
7  *  Use of this file is subject to the restrictions contain in the Squish
8  *  MSGAPI0 licence agreement.  Please refer to licence.txt for complete
9  *  details of the licencing restrictions.  If you do not find the text
10  *  of this agreement in licence.txt, or if you do not have this file,
11  *  you should contact Scott Dudley at FidoNet node 1:249/106 or Internet
12  *  e-mail Scott.Dudley@f106.n249.z1.fidonet.org.
13  *
14  *  In no event should you proceed to use any of the source files in this
15  *  archive without having accepted the terms of the MSGAPI0 licensing
16  *  agreement, or such other agreement as you are able to reach with the
17  *  author.
18  */
19 
20 #ifndef __APIDEBUG_H__
21 #define __APIDEBUG_H__
22 
23 /* Change the following #ifdef 1 to enable debugging */
24 
25 #if 0
26 
27 #ifdef palloc
28 #undef palloc
29 #endif
30 
31 #ifdef pfree
32 #undef pfree
33 #endif
34 
35 #define palloc(p) dmalloc(p)
36 #define pfree(p) dfree(p)
37 
38 #include "dmalloc.h"
39 
40 #endif
41 
42 #endif
43