xref: /openbsd/lib/libcurses/nc_alloc.h (revision 7b36286a)
1 /*	$OpenBSD: nc_alloc.h,v 1.6 2000/06/19 03:53:36 millert Exp $	*/
2 
3 /****************************************************************************
4  * Copyright (c) 1998 Free Software Foundation, Inc.                        *
5  *                                                                          *
6  * Permission is hereby granted, free of charge, to any person obtaining a  *
7  * copy of this software and associated documentation files (the            *
8  * "Software"), to deal in the Software without restriction, including      *
9  * without limitation the rights to use, copy, modify, merge, publish,      *
10  * distribute, distribute with modifications, sublicense, and/or sell       *
11  * copies of the Software, and to permit persons to whom the Software is    *
12  * furnished to do so, subject to the following conditions:                 *
13  *                                                                          *
14  * The above copyright notice and this permission notice shall be included  *
15  * in all copies or substantial portions of the Software.                   *
16  *                                                                          *
17  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
18  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
19  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
20  * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
21  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
22  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
23  * THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
24  *                                                                          *
25  * Except as contained in this notice, the name(s) of the above copyright   *
26  * holders shall not be used in advertising or otherwise to promote the     *
27  * sale, use or other dealings in this Software without prior written       *
28  * authorization.                                                           *
29  ****************************************************************************/
30 
31 /****************************************************************************
32  *  Author: Thomas E. Dickey <dickey@clark.net> 1996,1997                   *
33  ****************************************************************************/
34 /* $From: nc_alloc.h,v 1.8 2000/04/08 23:42:57 tom Exp $ */
35 
36 #ifndef NC_ALLOC_included
37 #define NC_ALLOC_included 1
38 
39 #if HAVE_LIBDMALLOC
40 #include <dmalloc.h>    /* Gray Watson's library */
41 #else
42 #undef  HAVE_LIBDMALLOC
43 #define HAVE_LIBDMALLOC 0
44 #endif
45 
46 #if HAVE_LIBDBMALLOC
47 #include <dbmalloc.h>   /* Conor Cahill's library */
48 #else
49 #undef  HAVE_LIBDBMALLOC
50 #define HAVE_LIBDBMALLOC 0
51 #endif
52 
53 #ifndef NO_LEAKS
54 #define NO_LEAKS 0
55 #endif
56 
57 #if HAVE_LIBDBMALLOC || HAVE_LIBDMALLOC || NO_LEAKS
58 #define HAVE_NC_FREEALL 1
59 struct termtype;
60 extern void _nc_free_and_exit(int) GCC_NORETURN;
61 extern void _nc_free_tparm(void);
62 extern void _nc_leaks_dump_entry(void);
63 #define ExitProgram(code) _nc_free_and_exit(code)
64 #endif
65 
66 #ifndef HAVE_NC_FREEALL
67 #define HAVE_NC_FREEALL 0
68 #endif
69 
70 #ifndef ExitProgram
71 #define ExitProgram(code) return code
72 #endif
73 
74 /* doalloc.c */
75 extern void *_nc_doalloc(void *, size_t);
76 #if !HAVE_STRDUP
77 #define strdup _nc_strdup
78 extern char *_nc_strdup(const char *);
79 #endif
80 
81 #define typeMalloc(type,elts) (type *)malloc((elts)*sizeof(type))
82 #define typeCalloc(type,elts) (type *)calloc((elts),sizeof(type))
83 #define typeRealloc(type,elts,ptr) (type *)_nc_doalloc(ptr, (elts)*sizeof(type))
84 
85 #endif /* NC_ALLOC_included */
86