missing ncurses sources
[tomato.git] / release / src / router / libncurses / ncurses / build.priv.h
blobbe00d73ea4309ac8ee6747e76f065982e1db320a
1 /****************************************************************************
2 * Copyright (c) 2010 Free Software Foundation, Inc. *
3 * *
4 * Permission is hereby granted, free of charge, to any person obtaining a *
5 * copy of this software and associated documentation files (the *
6 * "Software"), to deal in the Software without restriction, including *
7 * without limitation the rights to use, copy, modify, merge, publish, *
8 * distribute, distribute with modifications, sublicense, and/or sell *
9 * copies of the Software, and to permit persons to whom the Software is *
10 * furnished to do so, subject to the following conditions: *
11 * *
12 * The above copyright notice and this permission notice shall be included *
13 * in all copies or substantial portions of the Software. *
14 * *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS *
16 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF *
17 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. *
18 * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, *
19 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR *
20 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR *
21 * THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
22 * *
23 * Except as contained in this notice, the name(s) of the above copyright *
24 * holders shall not be used in advertising or otherwise to promote the *
25 * sale, use or other dealings in this Software without prior written *
26 * authorization. *
27 ****************************************************************************/
29 /****************************************************************************
30 * Author: Thomas E. Dickey 2010 *
31 ****************************************************************************/
35 * $Id: build.priv.h,v 1.6 2010/05/22 20:30:35 tom Exp $
37 * build.priv.h
39 * This is a reduced version of curses.priv.h, for build-time utilties.
40 * Because it has fewer dependencies, this simplifies cross-compiling.
44 #ifndef CURSES_PRIV_H
45 #define CURSES_PRIV_H 1
47 #include <ncurses_dll.h>
49 #ifdef __cplusplus
50 extern "C" {
51 #endif
53 #include <ncurses_cfg.h>
55 #if USE_RCS_IDS
56 #define MODULE_ID(id) static const char Ident[] = id;
57 #else
58 #define MODULE_ID(id) /*nothing*/
59 #endif
61 #include <stdlib.h>
62 #include <string.h>
63 #include <sys/types.h>
65 #include <assert.h>
66 #include <stdio.h>
68 #include <errno.h>
70 #include <curses.h> /* we'll use -Ipath directive to get the right one! */
72 /* usually in <unistd.h> */
73 #ifndef EXIT_SUCCESS
74 #define EXIT_SUCCESS 0
75 #endif
77 #ifndef EXIT_FAILURE
78 #define EXIT_FAILURE 1
79 #endif
81 #define FreeAndNull(p) free(p); p = 0
82 #define UChar(c) ((unsigned char)(c))
83 #define SIZEOF(v) (sizeof(v) / sizeof(v[0]))
85 #include <nc_alloc.h>
87 /* declare these, to avoid needing term.h */
88 #if BROKEN_LINKER || USE_REENTRANT
89 #define NCURSES_ARRAY(name) \
90 NCURSES_WRAPPED_VAR(NCURSES_CONST char * const *, name)
92 NCURSES_ARRAY(boolnames);
93 NCURSES_ARRAY(boolfnames);
94 NCURSES_ARRAY(numnames);
95 NCURSES_ARRAY(numfnames);
96 NCURSES_ARRAY(strnames);
97 NCURSES_ARRAY(strfnames);
98 #endif
100 #if NO_LEAKS
101 NCURSES_EXPORT(void) _nc_names_leaks(void);
102 #endif
104 #ifdef __cplusplus
106 #endif
108 #endif /* CURSES_PRIV_H */