blob: 7c8bac9c4076550cacf3b6e25495ce50494374de [file] [log] [blame]
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301/****************************************************************************
micky3879b9f5e72025-07-08 18:04:53 -04002 * Copyright 2019-2022,2023 Thomas E. Dickey *
3 * Copyright 2008-2016,2017 Free Software Foundation, Inc. *
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304 * *
5 * Permission is hereby granted, free of charge, to any person obtaining a *
6 * copy of this software and associated documentation files (the *
7 * "Software"), to deal in the Software without restriction, including *
8 * without limitation the rights to use, copy, modify, merge, publish, *
9 * distribute, distribute with modifications, sublicense, and/or sell *
10 * copies of the Software, and to permit persons to whom the Software is *
11 * furnished to do so, subject to the following conditions: *
12 * *
13 * The above copyright notice and this permission notice shall be included *
14 * in all copies or substantial portions of the Software. *
15 * *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS *
17 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF *
18 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. *
19 * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, *
20 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR *
21 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR *
22 * THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
23 * *
24 * Except as contained in this notice, the name(s) of the above copyright *
25 * holders shall not be used in advertising or otherwise to promote the *
26 * sale, use or other dealings in this Software without prior written *
27 * authorization. *
28 ****************************************************************************/
29
30/****************************************************************************
Steve Kondikae271bc2015-11-15 02:50:53 +010031 * Author: Thomas E. Dickey 2008-on *
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053032 ****************************************************************************/
33/* LINTLIBRARY */
34
35/* ./tty/hardscroll.c */
36
37#include <curses.priv.h>
38
39#undef _nc_oldnums
40int *_nc_oldnums;
41
Steve Kondikae271bc2015-11-15 02:50:53 +010042#undef _nc_scroll_optimize_sp
43void _nc_scroll_optimize_sp(
44 SCREEN *sp)
45 { /* void */ }
46
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053047#undef _nc_scroll_optimize
48void _nc_scroll_optimize(void)
49 { /* void */ }
50
Steve Kondikae271bc2015-11-15 02:50:53 +010051#undef _nc_linedump_sp
52void _nc_linedump_sp(
53 SCREEN *sp)
54 { /* void */ }
55
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053056#undef _nc_linedump
57void _nc_linedump(void)
58 { /* void */ }
59
60/* ./tty/hashmap.c */
61
Steve Kondikae271bc2015-11-15 02:50:53 +010062#undef _nc_hash_map_sp
63void _nc_hash_map_sp(
64 SCREEN *sp)
65 { /* void */ }
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053066
67#undef _nc_hash_map
68void _nc_hash_map(void)
69 { /* void */ }
70
Steve Kondikae271bc2015-11-15 02:50:53 +010071#undef _nc_make_oldhash_sp
72void _nc_make_oldhash_sp(
micky3879b9f5e72025-07-08 18:04:53 -040073 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +010074 int i)
75 { /* void */ }
76
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053077#undef _nc_make_oldhash
78void _nc_make_oldhash(
79 int i)
80 { /* void */ }
81
Steve Kondikae271bc2015-11-15 02:50:53 +010082#undef _nc_scroll_oldhash_sp
83void _nc_scroll_oldhash_sp(
micky3879b9f5e72025-07-08 18:04:53 -040084 SCREEN *sp,
85 int n,
86 int top,
Steve Kondikae271bc2015-11-15 02:50:53 +010087 int bot)
88 { /* void */ }
89
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053090#undef _nc_scroll_oldhash
91void _nc_scroll_oldhash(
micky3879b9f5e72025-07-08 18:04:53 -040092 int n,
93 int top,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053094 int bot)
95 { /* void */ }
96
97/* ./base/lib_addch.c */
98
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053099#undef _nc_render
100chtype _nc_render(
micky3879b9f5e72025-07-08 18:04:53 -0400101 WINDOW *win,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530102 chtype ch)
103 { return(*(chtype *)0); }
104
105#undef _nc_waddch_nosync
106int _nc_waddch_nosync(
micky3879b9f5e72025-07-08 18:04:53 -0400107 WINDOW *win,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530108 const chtype c)
109 { return(*(int *)0); }
110
111#undef waddch
112int waddch(
micky3879b9f5e72025-07-08 18:04:53 -0400113 WINDOW *win,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530114 const chtype ch)
115 { return(*(int *)0); }
116
117#undef wechochar
118int wechochar(
micky3879b9f5e72025-07-08 18:04:53 -0400119 WINDOW *win,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530120 const chtype ch)
121 { return(*(int *)0); }
122
123/* ./base/lib_addstr.c */
124
125#undef waddnstr
126int waddnstr(
micky3879b9f5e72025-07-08 18:04:53 -0400127 WINDOW *win,
128 const char *astr,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530129 int n)
130 { return(*(int *)0); }
131
132#undef waddchnstr
133int waddchnstr(
micky3879b9f5e72025-07-08 18:04:53 -0400134 WINDOW *win,
135 const chtype *astr,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530136 int n)
137 { return(*(int *)0); }
138
139/* ./base/lib_beep.c */
140
Steve Kondikae271bc2015-11-15 02:50:53 +0100141#undef beep_sp
142int beep_sp(
143 SCREEN *sp)
144 { return(*(int *)0); }
145
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530146#undef beep
147int beep(void)
148 { return(*(int *)0); }
149
150/* ./base/lib_bkgd.c */
151
152#undef wbkgdset
153void wbkgdset(
micky3879b9f5e72025-07-08 18:04:53 -0400154 WINDOW *win,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530155 chtype ch)
156 { /* void */ }
157
158#undef wbkgd
159int wbkgd(
micky3879b9f5e72025-07-08 18:04:53 -0400160 WINDOW *win,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530161 chtype ch)
162 { return(*(int *)0); }
163
164/* ./base/lib_box.c */
165
166#undef wborder
167int wborder(
micky3879b9f5e72025-07-08 18:04:53 -0400168 WINDOW *win,
169 chtype ls,
170 chtype rs,
171 chtype ts,
172 chtype bs,
173 chtype tl,
174 chtype tr,
175 chtype bl,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530176 chtype br)
177 { return(*(int *)0); }
178
179/* ./base/lib_chgat.c */
180
181#undef wchgat
182int wchgat(
micky3879b9f5e72025-07-08 18:04:53 -0400183 WINDOW *win,
184 int n,
185 attr_t attr,
186 short pair_arg,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530187 const void *opts)
188 { return(*(int *)0); }
189
190/* ./base/lib_clear.c */
191
192#undef wclear
193int wclear(
194 WINDOW *win)
195 { return(*(int *)0); }
196
197/* ./base/lib_clearok.c */
198
199#undef clearok
200int clearok(
micky3879b9f5e72025-07-08 18:04:53 -0400201 WINDOW *win,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530202 NCURSES_BOOL flag)
203 { return(*(int *)0); }
204
205/* ./base/lib_clrbot.c */
206
207#undef wclrtobot
208int wclrtobot(
209 WINDOW *win)
210 { return(*(int *)0); }
211
212/* ./base/lib_clreol.c */
213
214#undef wclrtoeol
215int wclrtoeol(
216 WINDOW *win)
217 { return(*(int *)0); }
218
219/* ./base/lib_color.c */
220
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530221#undef _nc_COLOR_PAIRS
222int _nc_COLOR_PAIRS(void)
223 { return(*(int *)0); }
224
225#undef _nc_COLORS
226int _nc_COLORS(void)
227 { return(*(int *)0); }
228
Steve Kondikae271bc2015-11-15 02:50:53 +0100229#undef _nc_reset_colors_sp
230NCURSES_BOOL _nc_reset_colors_sp(
231 SCREEN *sp)
232 { return(*(NCURSES_BOOL *)0); }
233
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530234#undef _nc_reset_colors
235NCURSES_BOOL _nc_reset_colors(void)
236 { return(*(NCURSES_BOOL *)0); }
237
Steve Kondikae271bc2015-11-15 02:50:53 +0100238#undef start_color_sp
239int start_color_sp(
240 SCREEN *sp)
241 { return(*(int *)0); }
242
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530243#undef start_color
244int start_color(void)
245 { return(*(int *)0); }
246
micky3879b9f5e72025-07-08 18:04:53 -0400247#undef _nc_change_pair
248void _nc_change_pair(
249 SCREEN *sp,
250 int pair)
251 { /* void */ }
252
253#undef _nc_reserve_pairs
254void _nc_reserve_pairs(
255 SCREEN *sp,
256 int want)
257 { /* void */ }
258
259#undef _nc_init_pair
260int _nc_init_pair(
261 SCREEN *sp,
262 int pair,
263 int f,
264 int b)
265 { return(*(int *)0); }
266
Steve Kondikae271bc2015-11-15 02:50:53 +0100267#undef init_pair_sp
268int init_pair_sp(
micky3879b9f5e72025-07-08 18:04:53 -0400269 SCREEN *sp,
270 short pair,
271 short f,
Steve Kondikae271bc2015-11-15 02:50:53 +0100272 short b)
273 { return(*(int *)0); }
274
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530275#undef init_pair
276int init_pair(
micky3879b9f5e72025-07-08 18:04:53 -0400277 short pair,
278 short f,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530279 short b)
280 { return(*(int *)0); }
281
micky3879b9f5e72025-07-08 18:04:53 -0400282#undef _nc_init_color
283int _nc_init_color(
284 SCREEN *sp,
285 int color,
286 int r,
287 int g,
288 int b)
289 { return(*(int *)0); }
290
Steve Kondikae271bc2015-11-15 02:50:53 +0100291#undef init_color_sp
292int init_color_sp(
micky3879b9f5e72025-07-08 18:04:53 -0400293 SCREEN *sp,
294 short color,
295 short r,
296 short g,
Steve Kondikae271bc2015-11-15 02:50:53 +0100297 short b)
298 { return(*(int *)0); }
299
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530300#undef init_color
301int init_color(
micky3879b9f5e72025-07-08 18:04:53 -0400302 short color,
303 short r,
304 short g,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530305 short b)
306 { return(*(int *)0); }
307
Steve Kondikae271bc2015-11-15 02:50:53 +0100308#undef can_change_color_sp
309NCURSES_BOOL can_change_color_sp(
310 SCREEN *sp)
311 { return(*(NCURSES_BOOL *)0); }
312
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530313#undef can_change_color
314NCURSES_BOOL can_change_color(void)
315 { return(*(NCURSES_BOOL *)0); }
316
Steve Kondikae271bc2015-11-15 02:50:53 +0100317#undef has_colors_sp
318NCURSES_BOOL has_colors_sp(
319 SCREEN *sp)
320 { return(*(NCURSES_BOOL *)0); }
321
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530322#undef has_colors
323NCURSES_BOOL has_colors(void)
324 { return(*(NCURSES_BOOL *)0); }
325
Steve Kondikae271bc2015-11-15 02:50:53 +0100326#undef color_content_sp
327int color_content_sp(
micky3879b9f5e72025-07-08 18:04:53 -0400328 SCREEN *sp,
329 short color,
330 short *r,
331 short *g,
Steve Kondikae271bc2015-11-15 02:50:53 +0100332 short *b)
333 { return(*(int *)0); }
334
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530335#undef color_content
336int color_content(
micky3879b9f5e72025-07-08 18:04:53 -0400337 short color,
338 short *r,
339 short *g,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530340 short *b)
341 { return(*(int *)0); }
342
micky3879b9f5e72025-07-08 18:04:53 -0400343#undef _nc_pair_content
344int _nc_pair_content(
345 SCREEN *sp,
346 int pair,
347 int *f,
348 int *b)
349 { return(*(int *)0); }
350
Steve Kondikae271bc2015-11-15 02:50:53 +0100351#undef pair_content_sp
352int pair_content_sp(
micky3879b9f5e72025-07-08 18:04:53 -0400353 SCREEN *sp,
354 short pair,
355 short *f,
Steve Kondikae271bc2015-11-15 02:50:53 +0100356 short *b)
357 { return(*(int *)0); }
358
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530359#undef pair_content
360int pair_content(
micky3879b9f5e72025-07-08 18:04:53 -0400361 short pair,
362 short *f,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530363 short *b)
364 { return(*(int *)0); }
365
Steve Kondikae271bc2015-11-15 02:50:53 +0100366#undef _nc_do_color_sp
367void _nc_do_color_sp(
micky3879b9f5e72025-07-08 18:04:53 -0400368 SCREEN *sp,
369 int old_pair,
370 int pair,
371 int reverse,
Steve Kondikae271bc2015-11-15 02:50:53 +0100372 NCURSES_OUTC_sp outc)
373 { /* void */ }
374
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530375#undef _nc_do_color
376void _nc_do_color(
micky3879b9f5e72025-07-08 18:04:53 -0400377 int old_pair,
378 int pair,
379 int reverse,
Steve Kondikae271bc2015-11-15 02:50:53 +0100380 NCURSES_OUTC outc)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530381 { /* void */ }
382
383/* ./base/lib_colorset.c */
384
385#undef wcolor_set
386int wcolor_set(
micky3879b9f5e72025-07-08 18:04:53 -0400387 WINDOW *win,
388 short pair_arg,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530389 void *opts)
390 { return(*(int *)0); }
391
392/* ./base/lib_delch.c */
393
394#undef wdelch
395int wdelch(
396 WINDOW *win)
397 { return(*(int *)0); }
398
399/* ./base/lib_delwin.c */
400
401#undef delwin
402int delwin(
403 WINDOW *win)
404 { return(*(int *)0); }
405
406/* ./base/lib_echo.c */
407
Steve Kondikae271bc2015-11-15 02:50:53 +0100408#undef echo_sp
409int echo_sp(
410 SCREEN *sp)
411 { return(*(int *)0); }
412
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530413#undef echo
414int echo(void)
415 { return(*(int *)0); }
416
Steve Kondikae271bc2015-11-15 02:50:53 +0100417#undef noecho_sp
418int noecho_sp(
419 SCREEN *sp)
420 { return(*(int *)0); }
421
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530422#undef noecho
423int noecho(void)
424 { return(*(int *)0); }
425
426/* ./base/lib_endwin.c */
427
Steve Kondikae271bc2015-11-15 02:50:53 +0100428#undef endwin_sp
429int endwin_sp(
430 SCREEN *sp)
431 { return(*(int *)0); }
432
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530433#undef endwin
434int endwin(void)
435 { return(*(int *)0); }
436
437/* ./base/lib_erase.c */
438
439#undef werase
440int werase(
441 WINDOW *win)
442 { return(*(int *)0); }
443
444/* ./base/lib_flash.c */
445
Steve Kondikae271bc2015-11-15 02:50:53 +0100446#undef flash_sp
447int flash_sp(
448 SCREEN *sp)
449 { return(*(int *)0); }
450
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530451#undef flash
452int flash(void)
453 { return(*(int *)0); }
454
455/* ./lib_gen.c */
456
457#undef addch
micky3879b9f5e72025-07-08 18:04:53 -0400458int addch(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530459 const chtype z)
460 { return(*(int *)0); }
461
462#undef addchnstr
micky3879b9f5e72025-07-08 18:04:53 -0400463int addchnstr(
464 const chtype *a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530465 int z)
466 { return(*(int *)0); }
467
468#undef addchstr
micky3879b9f5e72025-07-08 18:04:53 -0400469int addchstr(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530470 const chtype *z)
471 { return(*(int *)0); }
472
473#undef addnstr
micky3879b9f5e72025-07-08 18:04:53 -0400474int addnstr(
475 const char *a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530476 int z)
477 { return(*(int *)0); }
478
479#undef addstr
micky3879b9f5e72025-07-08 18:04:53 -0400480int addstr(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530481 const char *z)
482 { return(*(int *)0); }
483
484#undef attroff
micky3879b9f5e72025-07-08 18:04:53 -0400485int attroff(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530486 NCURSES_ATTR_T z)
487 { return(*(int *)0); }
488
489#undef attron
micky3879b9f5e72025-07-08 18:04:53 -0400490int attron(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530491 NCURSES_ATTR_T z)
492 { return(*(int *)0); }
493
494#undef attrset
micky3879b9f5e72025-07-08 18:04:53 -0400495int attrset(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530496 NCURSES_ATTR_T z)
497 { return(*(int *)0); }
498
499#undef attr_get
micky3879b9f5e72025-07-08 18:04:53 -0400500int attr_get(
501 attr_t *a1,
502 short *a2,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530503 void *z)
504 { return(*(int *)0); }
505
506#undef attr_off
micky3879b9f5e72025-07-08 18:04:53 -0400507int attr_off(
508 attr_t a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530509 void *z)
510 { return(*(int *)0); }
511
512#undef attr_on
micky3879b9f5e72025-07-08 18:04:53 -0400513int attr_on(
514 attr_t a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530515 void *z)
516 { return(*(int *)0); }
517
518#undef attr_set
micky3879b9f5e72025-07-08 18:04:53 -0400519int attr_set(
520 attr_t a1,
521 short a2,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530522 void *z)
523 { return(*(int *)0); }
524
525#undef bkgd
micky3879b9f5e72025-07-08 18:04:53 -0400526int bkgd(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530527 chtype z)
528 { return(*(int *)0); }
529
530#undef bkgdset
micky3879b9f5e72025-07-08 18:04:53 -0400531void bkgdset(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530532 chtype z)
533 { /* void */ }
534
535#undef border
micky3879b9f5e72025-07-08 18:04:53 -0400536int border(
537 chtype a1,
538 chtype a2,
539 chtype a3,
540 chtype a4,
541 chtype a5,
542 chtype a6,
543 chtype a7,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530544 chtype z)
545 { return(*(int *)0); }
546
547#undef box
micky3879b9f5e72025-07-08 18:04:53 -0400548int box(
549 WINDOW *a1,
550 chtype a2,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530551 chtype z)
552 { return(*(int *)0); }
553
554#undef chgat
micky3879b9f5e72025-07-08 18:04:53 -0400555int chgat(
556 int a1,
557 attr_t a2,
558 short a3,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530559 const void *z)
560 { return(*(int *)0); }
561
562#undef clear
micky3879b9f5e72025-07-08 18:04:53 -0400563int clear(void)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530564 { return(*(int *)0); }
565
566#undef clrtobot
micky3879b9f5e72025-07-08 18:04:53 -0400567int clrtobot(void)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530568 { return(*(int *)0); }
569
570#undef clrtoeol
micky3879b9f5e72025-07-08 18:04:53 -0400571int clrtoeol(void)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530572 { return(*(int *)0); }
573
574#undef color_set
micky3879b9f5e72025-07-08 18:04:53 -0400575int color_set(
576 short a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530577 void *z)
578 { return(*(int *)0); }
579
580#undef COLOR_PAIR
micky3879b9f5e72025-07-08 18:04:53 -0400581int COLOR_PAIR(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530582 int z)
583 { return(*(int *)0); }
584
585#undef delch
micky3879b9f5e72025-07-08 18:04:53 -0400586int delch(void)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530587 { return(*(int *)0); }
588
589#undef deleteln
micky3879b9f5e72025-07-08 18:04:53 -0400590int deleteln(void)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530591 { return(*(int *)0); }
592
593#undef echochar
micky3879b9f5e72025-07-08 18:04:53 -0400594int echochar(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530595 const chtype z)
596 { return(*(int *)0); }
597
598#undef erase
micky3879b9f5e72025-07-08 18:04:53 -0400599int erase(void)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530600 { return(*(int *)0); }
601
602#undef getbkgd
micky3879b9f5e72025-07-08 18:04:53 -0400603chtype getbkgd(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530604 WINDOW *z)
605 { return(*(chtype *)0); }
606
607#undef getch
micky3879b9f5e72025-07-08 18:04:53 -0400608int getch(void)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530609 { return(*(int *)0); }
610
611#undef getnstr
micky3879b9f5e72025-07-08 18:04:53 -0400612int getnstr(
613 char *a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530614 int z)
615 { return(*(int *)0); }
616
617#undef getstr
micky3879b9f5e72025-07-08 18:04:53 -0400618int getstr(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530619 char *z)
620 { return(*(int *)0); }
621
622#undef hline
micky3879b9f5e72025-07-08 18:04:53 -0400623int hline(
624 chtype a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530625 int z)
626 { return(*(int *)0); }
627
628#undef inch
micky3879b9f5e72025-07-08 18:04:53 -0400629chtype inch(void)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530630 { return(*(chtype *)0); }
631
632#undef inchnstr
micky3879b9f5e72025-07-08 18:04:53 -0400633int inchnstr(
634 chtype *a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530635 int z)
636 { return(*(int *)0); }
637
638#undef inchstr
micky3879b9f5e72025-07-08 18:04:53 -0400639int inchstr(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530640 chtype *z)
641 { return(*(int *)0); }
642
643#undef innstr
micky3879b9f5e72025-07-08 18:04:53 -0400644int innstr(
645 char *a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530646 int z)
647 { return(*(int *)0); }
648
649#undef insch
micky3879b9f5e72025-07-08 18:04:53 -0400650int insch(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530651 chtype z)
652 { return(*(int *)0); }
653
654#undef insdelln
micky3879b9f5e72025-07-08 18:04:53 -0400655int insdelln(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530656 int z)
657 { return(*(int *)0); }
658
659#undef insertln
micky3879b9f5e72025-07-08 18:04:53 -0400660int insertln(void)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530661 { return(*(int *)0); }
662
663#undef insnstr
micky3879b9f5e72025-07-08 18:04:53 -0400664int insnstr(
665 const char *a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530666 int z)
667 { return(*(int *)0); }
668
669#undef insstr
micky3879b9f5e72025-07-08 18:04:53 -0400670int insstr(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530671 const char *z)
672 { return(*(int *)0); }
673
674#undef instr
micky3879b9f5e72025-07-08 18:04:53 -0400675int instr(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530676 char *z)
677 { return(*(int *)0); }
678
679#undef move
micky3879b9f5e72025-07-08 18:04:53 -0400680int move(
681 int a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530682 int z)
683 { return(*(int *)0); }
684
685#undef mvaddch
micky3879b9f5e72025-07-08 18:04:53 -0400686int mvaddch(
687 int a1,
688 int a2,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530689 const chtype z)
690 { return(*(int *)0); }
691
692#undef mvaddchnstr
micky3879b9f5e72025-07-08 18:04:53 -0400693int mvaddchnstr(
694 int a1,
695 int a2,
696 const chtype *a3,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530697 int z)
698 { return(*(int *)0); }
699
700#undef mvaddchstr
micky3879b9f5e72025-07-08 18:04:53 -0400701int mvaddchstr(
702 int a1,
703 int a2,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530704 const chtype *z)
705 { return(*(int *)0); }
706
707#undef mvaddnstr
micky3879b9f5e72025-07-08 18:04:53 -0400708int mvaddnstr(
709 int a1,
710 int a2,
711 const char *a3,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530712 int z)
713 { return(*(int *)0); }
714
715#undef mvaddstr
micky3879b9f5e72025-07-08 18:04:53 -0400716int mvaddstr(
717 int a1,
718 int a2,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530719 const char *z)
720 { return(*(int *)0); }
721
722#undef mvchgat
micky3879b9f5e72025-07-08 18:04:53 -0400723int mvchgat(
724 int a1,
725 int a2,
726 int a3,
727 attr_t a4,
728 short a5,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530729 const void *z)
730 { return(*(int *)0); }
731
732#undef mvdelch
micky3879b9f5e72025-07-08 18:04:53 -0400733int mvdelch(
734 int a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530735 int z)
736 { return(*(int *)0); }
737
738#undef mvgetch
micky3879b9f5e72025-07-08 18:04:53 -0400739int mvgetch(
740 int a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530741 int z)
742 { return(*(int *)0); }
743
744#undef mvgetnstr
micky3879b9f5e72025-07-08 18:04:53 -0400745int mvgetnstr(
746 int a1,
747 int a2,
748 char *a3,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530749 int z)
750 { return(*(int *)0); }
751
752#undef mvgetstr
micky3879b9f5e72025-07-08 18:04:53 -0400753int mvgetstr(
754 int a1,
755 int a2,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530756 char *z)
757 { return(*(int *)0); }
758
759#undef mvhline
micky3879b9f5e72025-07-08 18:04:53 -0400760int mvhline(
761 int a1,
762 int a2,
763 chtype a3,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530764 int z)
765 { return(*(int *)0); }
766
767#undef mvinch
micky3879b9f5e72025-07-08 18:04:53 -0400768chtype mvinch(
769 int a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530770 int z)
771 { return(*(chtype *)0); }
772
773#undef mvinchnstr
micky3879b9f5e72025-07-08 18:04:53 -0400774int mvinchnstr(
775 int a1,
776 int a2,
777 chtype *a3,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530778 int z)
779 { return(*(int *)0); }
780
781#undef mvinchstr
micky3879b9f5e72025-07-08 18:04:53 -0400782int mvinchstr(
783 int a1,
784 int a2,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530785 chtype *z)
786 { return(*(int *)0); }
787
788#undef mvinnstr
micky3879b9f5e72025-07-08 18:04:53 -0400789int mvinnstr(
790 int a1,
791 int a2,
792 char *a3,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530793 int z)
794 { return(*(int *)0); }
795
796#undef mvinsch
micky3879b9f5e72025-07-08 18:04:53 -0400797int mvinsch(
798 int a1,
799 int a2,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530800 chtype z)
801 { return(*(int *)0); }
802
803#undef mvinsnstr
micky3879b9f5e72025-07-08 18:04:53 -0400804int mvinsnstr(
805 int a1,
806 int a2,
807 const char *a3,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530808 int z)
809 { return(*(int *)0); }
810
811#undef mvinsstr
micky3879b9f5e72025-07-08 18:04:53 -0400812int mvinsstr(
813 int a1,
814 int a2,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530815 const char *z)
816 { return(*(int *)0); }
817
818#undef mvinstr
micky3879b9f5e72025-07-08 18:04:53 -0400819int mvinstr(
820 int a1,
821 int a2,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530822 char *z)
823 { return(*(int *)0); }
824
825#undef mvvline
micky3879b9f5e72025-07-08 18:04:53 -0400826int mvvline(
827 int a1,
828 int a2,
829 chtype a3,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530830 int z)
831 { return(*(int *)0); }
832
833#undef mvwaddch
micky3879b9f5e72025-07-08 18:04:53 -0400834int mvwaddch(
835 WINDOW *a1,
836 int a2,
837 int a3,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530838 const chtype z)
839 { return(*(int *)0); }
840
841#undef mvwaddchnstr
micky3879b9f5e72025-07-08 18:04:53 -0400842int mvwaddchnstr(
843 WINDOW *a1,
844 int a2,
845 int a3,
846 const chtype *a4,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530847 int z)
848 { return(*(int *)0); }
849
850#undef mvwaddchstr
micky3879b9f5e72025-07-08 18:04:53 -0400851int mvwaddchstr(
852 WINDOW *a1,
853 int a2,
854 int a3,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530855 const chtype *z)
856 { return(*(int *)0); }
857
858#undef mvwaddnstr
micky3879b9f5e72025-07-08 18:04:53 -0400859int mvwaddnstr(
860 WINDOW *a1,
861 int a2,
862 int a3,
863 const char *a4,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530864 int z)
865 { return(*(int *)0); }
866
867#undef mvwaddstr
micky3879b9f5e72025-07-08 18:04:53 -0400868int mvwaddstr(
869 WINDOW *a1,
870 int a2,
871 int a3,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530872 const char *z)
873 { return(*(int *)0); }
874
875#undef mvwchgat
micky3879b9f5e72025-07-08 18:04:53 -0400876int mvwchgat(
877 WINDOW *a1,
878 int a2,
879 int a3,
880 int a4,
881 attr_t a5,
882 short a6,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530883 const void *z)
884 { return(*(int *)0); }
885
886#undef mvwdelch
micky3879b9f5e72025-07-08 18:04:53 -0400887int mvwdelch(
888 WINDOW *a1,
889 int a2,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530890 int z)
891 { return(*(int *)0); }
892
893#undef mvwgetch
micky3879b9f5e72025-07-08 18:04:53 -0400894int mvwgetch(
895 WINDOW *a1,
896 int a2,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530897 int z)
898 { return(*(int *)0); }
899
900#undef mvwgetnstr
micky3879b9f5e72025-07-08 18:04:53 -0400901int mvwgetnstr(
902 WINDOW *a1,
903 int a2,
904 int a3,
905 char *a4,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530906 int z)
907 { return(*(int *)0); }
908
909#undef mvwgetstr
micky3879b9f5e72025-07-08 18:04:53 -0400910int mvwgetstr(
911 WINDOW *a1,
912 int a2,
913 int a3,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530914 char *z)
915 { return(*(int *)0); }
916
917#undef mvwhline
micky3879b9f5e72025-07-08 18:04:53 -0400918int mvwhline(
919 WINDOW *a1,
920 int a2,
921 int a3,
922 chtype a4,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530923 int z)
924 { return(*(int *)0); }
925
926#undef mvwinch
micky3879b9f5e72025-07-08 18:04:53 -0400927chtype mvwinch(
928 WINDOW *a1,
929 int a2,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530930 int z)
931 { return(*(chtype *)0); }
932
933#undef mvwinchnstr
micky3879b9f5e72025-07-08 18:04:53 -0400934int mvwinchnstr(
935 WINDOW *a1,
936 int a2,
937 int a3,
938 chtype *a4,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530939 int z)
940 { return(*(int *)0); }
941
942#undef mvwinchstr
micky3879b9f5e72025-07-08 18:04:53 -0400943int mvwinchstr(
944 WINDOW *a1,
945 int a2,
946 int a3,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530947 chtype *z)
948 { return(*(int *)0); }
949
950#undef mvwinnstr
micky3879b9f5e72025-07-08 18:04:53 -0400951int mvwinnstr(
952 WINDOW *a1,
953 int a2,
954 int a3,
955 char *a4,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530956 int z)
957 { return(*(int *)0); }
958
959#undef mvwinsch
micky3879b9f5e72025-07-08 18:04:53 -0400960int mvwinsch(
961 WINDOW *a1,
962 int a2,
963 int a3,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530964 chtype z)
965 { return(*(int *)0); }
966
967#undef mvwinsnstr
micky3879b9f5e72025-07-08 18:04:53 -0400968int mvwinsnstr(
969 WINDOW *a1,
970 int a2,
971 int a3,
972 const char *a4,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530973 int z)
974 { return(*(int *)0); }
975
976#undef mvwinsstr
micky3879b9f5e72025-07-08 18:04:53 -0400977int mvwinsstr(
978 WINDOW *a1,
979 int a2,
980 int a3,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530981 const char *z)
982 { return(*(int *)0); }
983
984#undef mvwinstr
micky3879b9f5e72025-07-08 18:04:53 -0400985int mvwinstr(
986 WINDOW *a1,
987 int a2,
988 int a3,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530989 char *z)
990 { return(*(int *)0); }
991
992#undef mvwvline
micky3879b9f5e72025-07-08 18:04:53 -0400993int mvwvline(
994 WINDOW *a1,
995 int a2,
996 int a3,
997 chtype a4,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530998 int z)
999 { return(*(int *)0); }
1000
1001#undef PAIR_NUMBER
micky3879b9f5e72025-07-08 18:04:53 -04001002int PAIR_NUMBER(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301003 int z)
1004 { return(*(int *)0); }
1005
1006#undef redrawwin
micky3879b9f5e72025-07-08 18:04:53 -04001007int redrawwin(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301008 WINDOW *z)
1009 { return(*(int *)0); }
1010
1011#undef refresh
micky3879b9f5e72025-07-08 18:04:53 -04001012int refresh(void)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301013 { return(*(int *)0); }
1014
1015#undef scrl
micky3879b9f5e72025-07-08 18:04:53 -04001016int scrl(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301017 int z)
1018 { return(*(int *)0); }
1019
1020#undef scroll
micky3879b9f5e72025-07-08 18:04:53 -04001021int scroll(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301022 WINDOW *z)
1023 { return(*(int *)0); }
1024
1025#undef setscrreg
micky3879b9f5e72025-07-08 18:04:53 -04001026int setscrreg(
1027 int a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301028 int z)
1029 { return(*(int *)0); }
1030
1031#undef standout
micky3879b9f5e72025-07-08 18:04:53 -04001032int standout(void)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301033 { return(*(int *)0); }
1034
1035#undef standend
micky3879b9f5e72025-07-08 18:04:53 -04001036int standend(void)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301037 { return(*(int *)0); }
1038
1039#undef timeout
micky3879b9f5e72025-07-08 18:04:53 -04001040void timeout(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301041 int z)
1042 { /* void */ }
1043
1044#undef touchline
micky3879b9f5e72025-07-08 18:04:53 -04001045int touchline(
1046 WINDOW *a1,
1047 int a2,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301048 int z)
1049 { return(*(int *)0); }
1050
1051#undef touchwin
micky3879b9f5e72025-07-08 18:04:53 -04001052int touchwin(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301053 WINDOW *z)
1054 { return(*(int *)0); }
1055
1056#undef untouchwin
micky3879b9f5e72025-07-08 18:04:53 -04001057int untouchwin(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301058 WINDOW *z)
1059 { return(*(int *)0); }
1060
1061#undef vline
micky3879b9f5e72025-07-08 18:04:53 -04001062int vline(
1063 chtype a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301064 int z)
1065 { return(*(int *)0); }
1066
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301067#undef waddchstr
micky3879b9f5e72025-07-08 18:04:53 -04001068int waddchstr(
1069 WINDOW *a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301070 const chtype *z)
1071 { return(*(int *)0); }
1072
1073#undef waddstr
micky3879b9f5e72025-07-08 18:04:53 -04001074int waddstr(
1075 WINDOW *a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301076 const char *z)
1077 { return(*(int *)0); }
1078
1079#undef wattron
micky3879b9f5e72025-07-08 18:04:53 -04001080int wattron(
1081 WINDOW *a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301082 int z)
1083 { return(*(int *)0); }
1084
1085#undef wattroff
micky3879b9f5e72025-07-08 18:04:53 -04001086int wattroff(
1087 WINDOW *a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301088 int z)
1089 { return(*(int *)0); }
1090
1091#undef wattrset
micky3879b9f5e72025-07-08 18:04:53 -04001092int wattrset(
1093 WINDOW *a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301094 int z)
1095 { return(*(int *)0); }
1096
1097#undef wattr_get
micky3879b9f5e72025-07-08 18:04:53 -04001098int wattr_get(
1099 WINDOW *a1,
1100 attr_t *a2,
1101 short *a3,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301102 void *z)
1103 { return(*(int *)0); }
1104
1105#undef wattr_set
micky3879b9f5e72025-07-08 18:04:53 -04001106int wattr_set(
1107 WINDOW *a1,
1108 attr_t a2,
1109 short a3,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301110 void *z)
1111 { return(*(int *)0); }
1112
1113#undef wdeleteln
micky3879b9f5e72025-07-08 18:04:53 -04001114int wdeleteln(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301115 WINDOW *z)
1116 { return(*(int *)0); }
1117
1118#undef wgetstr
micky3879b9f5e72025-07-08 18:04:53 -04001119int wgetstr(
1120 WINDOW *a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301121 char *z)
1122 { return(*(int *)0); }
1123
1124#undef winchstr
micky3879b9f5e72025-07-08 18:04:53 -04001125int winchstr(
1126 WINDOW *a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301127 chtype *z)
1128 { return(*(int *)0); }
1129
1130#undef winsertln
micky3879b9f5e72025-07-08 18:04:53 -04001131int winsertln(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301132 WINDOW *z)
1133 { return(*(int *)0); }
1134
1135#undef winsstr
micky3879b9f5e72025-07-08 18:04:53 -04001136int winsstr(
1137 WINDOW *a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301138 const char *z)
1139 { return(*(int *)0); }
1140
1141#undef winstr
micky3879b9f5e72025-07-08 18:04:53 -04001142int winstr(
1143 WINDOW *a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301144 char *z)
1145 { return(*(int *)0); }
1146
1147#undef wstandout
micky3879b9f5e72025-07-08 18:04:53 -04001148int wstandout(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301149 WINDOW *z)
1150 { return(*(int *)0); }
1151
1152#undef wstandend
micky3879b9f5e72025-07-08 18:04:53 -04001153int wstandend(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301154 WINDOW *z)
1155 { return(*(int *)0); }
1156
1157#undef getattrs
micky3879b9f5e72025-07-08 18:04:53 -04001158int getattrs(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301159 const WINDOW *z)
1160 { return(*(int *)0); }
1161
1162#undef getcurx
micky3879b9f5e72025-07-08 18:04:53 -04001163int getcurx(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301164 const WINDOW *z)
1165 { return(*(int *)0); }
1166
1167#undef getcury
micky3879b9f5e72025-07-08 18:04:53 -04001168int getcury(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301169 const WINDOW *z)
1170 { return(*(int *)0); }
1171
1172#undef getbegx
micky3879b9f5e72025-07-08 18:04:53 -04001173int getbegx(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301174 const WINDOW *z)
1175 { return(*(int *)0); }
1176
1177#undef getbegy
micky3879b9f5e72025-07-08 18:04:53 -04001178int getbegy(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301179 const WINDOW *z)
1180 { return(*(int *)0); }
1181
1182#undef getmaxx
micky3879b9f5e72025-07-08 18:04:53 -04001183int getmaxx(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301184 const WINDOW *z)
1185 { return(*(int *)0); }
1186
1187#undef getmaxy
micky3879b9f5e72025-07-08 18:04:53 -04001188int getmaxy(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301189 const WINDOW *z)
1190 { return(*(int *)0); }
1191
1192#undef getparx
micky3879b9f5e72025-07-08 18:04:53 -04001193int getparx(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301194 const WINDOW *z)
1195 { return(*(int *)0); }
1196
1197#undef getpary
micky3879b9f5e72025-07-08 18:04:53 -04001198int getpary(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301199 const WINDOW *z)
1200 { return(*(int *)0); }
1201
1202#undef wgetparent
micky3879b9f5e72025-07-08 18:04:53 -04001203WINDOW *wgetparent(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301204 const WINDOW *z)
1205 { return(*(WINDOW **)0); }
1206
1207#undef is_cleared
micky3879b9f5e72025-07-08 18:04:53 -04001208NCURSES_BOOL is_cleared(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301209 const WINDOW *z)
1210 { return(*(NCURSES_BOOL *)0); }
1211
1212#undef is_idcok
micky3879b9f5e72025-07-08 18:04:53 -04001213NCURSES_BOOL is_idcok(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301214 const WINDOW *z)
1215 { return(*(NCURSES_BOOL *)0); }
1216
1217#undef is_idlok
micky3879b9f5e72025-07-08 18:04:53 -04001218NCURSES_BOOL is_idlok(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301219 const WINDOW *z)
1220 { return(*(NCURSES_BOOL *)0); }
1221
1222#undef is_immedok
micky3879b9f5e72025-07-08 18:04:53 -04001223NCURSES_BOOL is_immedok(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301224 const WINDOW *z)
1225 { return(*(NCURSES_BOOL *)0); }
1226
1227#undef is_keypad
micky3879b9f5e72025-07-08 18:04:53 -04001228NCURSES_BOOL is_keypad(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301229 const WINDOW *z)
1230 { return(*(NCURSES_BOOL *)0); }
1231
1232#undef is_leaveok
micky3879b9f5e72025-07-08 18:04:53 -04001233NCURSES_BOOL is_leaveok(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301234 const WINDOW *z)
1235 { return(*(NCURSES_BOOL *)0); }
1236
1237#undef is_nodelay
micky3879b9f5e72025-07-08 18:04:53 -04001238NCURSES_BOOL is_nodelay(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301239 const WINDOW *z)
1240 { return(*(NCURSES_BOOL *)0); }
1241
1242#undef is_notimeout
micky3879b9f5e72025-07-08 18:04:53 -04001243NCURSES_BOOL is_notimeout(
Steve Kondikae271bc2015-11-15 02:50:53 +01001244 const WINDOW *z)
1245 { return(*(NCURSES_BOOL *)0); }
1246
1247#undef is_pad
micky3879b9f5e72025-07-08 18:04:53 -04001248NCURSES_BOOL is_pad(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301249 const WINDOW *z)
1250 { return(*(NCURSES_BOOL *)0); }
1251
1252#undef is_scrollok
micky3879b9f5e72025-07-08 18:04:53 -04001253NCURSES_BOOL is_scrollok(
Steve Kondikae271bc2015-11-15 02:50:53 +01001254 const WINDOW *z)
1255 { return(*(NCURSES_BOOL *)0); }
1256
1257#undef is_subwin
micky3879b9f5e72025-07-08 18:04:53 -04001258NCURSES_BOOL is_subwin(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301259 const WINDOW *z)
1260 { return(*(NCURSES_BOOL *)0); }
1261
1262#undef is_syncok
micky3879b9f5e72025-07-08 18:04:53 -04001263NCURSES_BOOL is_syncok(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301264 const WINDOW *z)
1265 { return(*(NCURSES_BOOL *)0); }
1266
Steve Kondikae271bc2015-11-15 02:50:53 +01001267#undef wgetdelay
micky3879b9f5e72025-07-08 18:04:53 -04001268int wgetdelay(
Steve Kondikae271bc2015-11-15 02:50:53 +01001269 const WINDOW *z)
1270 { return(*(int *)0); }
1271
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301272#undef wgetscrreg
micky3879b9f5e72025-07-08 18:04:53 -04001273int wgetscrreg(
1274 const WINDOW *a1,
1275 int *a2,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301276 int *z)
1277 { return(*(int *)0); }
1278
1279#undef mouse_trafo
micky3879b9f5e72025-07-08 18:04:53 -04001280NCURSES_BOOL mouse_trafo(
1281 int *a1,
1282 int *a2,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301283 NCURSES_BOOL z)
1284 { return(*(NCURSES_BOOL *)0); }
1285
1286/* ./base/lib_getch.c */
1287
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301288#undef _nc_ESCDELAY
1289int _nc_ESCDELAY(void)
1290 { return(*(int *)0); }
1291
Steve Kondikae271bc2015-11-15 02:50:53 +01001292#undef _nc_ptr_Escdelay
1293int *_nc_ptr_Escdelay(
1294 SCREEN *sp)
1295 { return(*(int **)0); }
1296
1297#undef set_escdelay_sp
1298int set_escdelay_sp(
micky3879b9f5e72025-07-08 18:04:53 -04001299 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01001300 int value)
1301 { return(*(int *)0); }
1302
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301303#undef set_escdelay
1304int set_escdelay(
1305 int value)
1306 { return(*(int *)0); }
1307
Steve Kondikae271bc2015-11-15 02:50:53 +01001308#undef get_escdelay_sp
1309int get_escdelay_sp(
1310 SCREEN *sp)
1311 { return(*(int *)0); }
1312
1313#undef get_escdelay
1314int get_escdelay(void)
1315 { return(*(int *)0); }
1316
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301317#undef _nc_wgetch
1318int _nc_wgetch(
micky3879b9f5e72025-07-08 18:04:53 -04001319 WINDOW *win,
1320 int *result,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301321 int use_meta)
1322 { return(*(int *)0); }
1323
1324#undef wgetch
1325int wgetch(
1326 WINDOW *win)
1327 { return(*(int *)0); }
1328
1329/* ./base/lib_getstr.c */
1330
1331#undef wgetnstr
1332int wgetnstr(
micky3879b9f5e72025-07-08 18:04:53 -04001333 WINDOW *win,
1334 char *str,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301335 int maxlen)
1336 { return(*(int *)0); }
1337
1338/* ./base/lib_hline.c */
1339
1340#undef whline
1341int whline(
micky3879b9f5e72025-07-08 18:04:53 -04001342 WINDOW *win,
1343 chtype ch,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301344 int n)
1345 { return(*(int *)0); }
1346
1347/* ./base/lib_immedok.c */
1348
1349#undef immedok
1350void immedok(
micky3879b9f5e72025-07-08 18:04:53 -04001351 WINDOW *win,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301352 NCURSES_BOOL flag)
1353 { /* void */ }
1354
1355/* ./base/lib_inchstr.c */
1356
1357#undef winchnstr
1358int winchnstr(
micky3879b9f5e72025-07-08 18:04:53 -04001359 WINDOW *win,
1360 chtype *str,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301361 int n)
1362 { return(*(int *)0); }
1363
1364/* ./base/lib_initscr.c */
1365
1366#undef initscr
1367WINDOW *initscr(void)
1368 { return(*(WINDOW **)0); }
1369
1370/* ./base/lib_insch.c */
1371
1372#undef _nc_insert_ch
1373int _nc_insert_ch(
micky3879b9f5e72025-07-08 18:04:53 -04001374 SCREEN *sp,
1375 WINDOW *win,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301376 chtype ch)
1377 { return(*(int *)0); }
1378
1379#undef winsch
1380int winsch(
micky3879b9f5e72025-07-08 18:04:53 -04001381 WINDOW *win,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301382 chtype c)
1383 { return(*(int *)0); }
1384
1385/* ./base/lib_insdel.c */
1386
1387#undef winsdelln
1388int winsdelln(
micky3879b9f5e72025-07-08 18:04:53 -04001389 WINDOW *win,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301390 int n)
1391 { return(*(int *)0); }
1392
1393/* ./base/lib_insnstr.c */
1394
1395#undef winsnstr
1396int winsnstr(
micky3879b9f5e72025-07-08 18:04:53 -04001397 WINDOW *win,
1398 const char *s,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301399 int n)
1400 { return(*(int *)0); }
1401
1402/* ./base/lib_instr.c */
1403
1404#undef winnstr
1405int winnstr(
micky3879b9f5e72025-07-08 18:04:53 -04001406 WINDOW *win,
1407 char *str,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301408 int n)
1409 { return(*(int *)0); }
1410
1411/* ./base/lib_isendwin.c */
1412
Steve Kondikae271bc2015-11-15 02:50:53 +01001413#undef isendwin_sp
1414NCURSES_BOOL isendwin_sp(
1415 SCREEN *sp)
1416 { return(*(NCURSES_BOOL *)0); }
1417
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301418#undef isendwin
1419NCURSES_BOOL isendwin(void)
1420 { return(*(NCURSES_BOOL *)0); }
1421
1422/* ./base/lib_leaveok.c */
1423
1424#undef leaveok
1425int leaveok(
micky3879b9f5e72025-07-08 18:04:53 -04001426 WINDOW *win,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301427 NCURSES_BOOL flag)
1428 { return(*(int *)0); }
1429
1430/* ./base/lib_mouse.c */
1431
Steve Kondikae271bc2015-11-15 02:50:53 +01001432#undef getmouse_sp
1433int getmouse_sp(
micky3879b9f5e72025-07-08 18:04:53 -04001434 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01001435 MEVENT *aevent)
1436 { return(*(int *)0); }
1437
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301438#undef getmouse
1439int getmouse(
1440 MEVENT *aevent)
1441 { return(*(int *)0); }
1442
Steve Kondikae271bc2015-11-15 02:50:53 +01001443#undef ungetmouse_sp
1444int ungetmouse_sp(
micky3879b9f5e72025-07-08 18:04:53 -04001445 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01001446 MEVENT *aevent)
1447 { return(*(int *)0); }
1448
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301449#undef ungetmouse
1450int ungetmouse(
1451 MEVENT *aevent)
1452 { return(*(int *)0); }
1453
Steve Kondikae271bc2015-11-15 02:50:53 +01001454#undef mousemask_sp
1455mmask_t mousemask_sp(
micky3879b9f5e72025-07-08 18:04:53 -04001456 SCREEN *sp,
1457 mmask_t newmask,
Steve Kondikae271bc2015-11-15 02:50:53 +01001458 mmask_t *oldmask)
1459 { return(*(mmask_t *)0); }
1460
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301461#undef mousemask
1462mmask_t mousemask(
micky3879b9f5e72025-07-08 18:04:53 -04001463 mmask_t newmask,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301464 mmask_t *oldmask)
1465 { return(*(mmask_t *)0); }
1466
1467#undef wenclose
1468NCURSES_BOOL wenclose(
micky3879b9f5e72025-07-08 18:04:53 -04001469 const WINDOW *win,
1470 int y,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301471 int x)
1472 { return(*(NCURSES_BOOL *)0); }
1473
Steve Kondikae271bc2015-11-15 02:50:53 +01001474#undef mouseinterval_sp
1475int mouseinterval_sp(
micky3879b9f5e72025-07-08 18:04:53 -04001476 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01001477 int maxclick)
1478 { return(*(int *)0); }
1479
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301480#undef mouseinterval
1481int mouseinterval(
1482 int maxclick)
1483 { return(*(int *)0); }
1484
1485#undef _nc_has_mouse
Steve Kondikae271bc2015-11-15 02:50:53 +01001486NCURSES_BOOL _nc_has_mouse(
1487 SCREEN *sp)
1488 { return(*(NCURSES_BOOL *)0); }
1489
1490#undef has_mouse_sp
1491NCURSES_BOOL has_mouse_sp(
1492 SCREEN *sp)
1493 { return(*(NCURSES_BOOL *)0); }
1494
1495#undef has_mouse
1496NCURSES_BOOL has_mouse(void)
1497 { return(*(NCURSES_BOOL *)0); }
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301498
1499#undef wmouse_trafo
1500NCURSES_BOOL wmouse_trafo(
micky3879b9f5e72025-07-08 18:04:53 -04001501 const WINDOW *win,
1502 int *pY,
1503 int *pX,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301504 NCURSES_BOOL to_screen)
1505 { return(*(NCURSES_BOOL *)0); }
1506
1507/* ./base/lib_move.c */
1508
1509#undef wmove
1510int wmove(
micky3879b9f5e72025-07-08 18:04:53 -04001511 WINDOW *win,
1512 int y,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301513 int x)
1514 { return(*(int *)0); }
1515
1516/* ./tty/lib_mvcur.c */
1517
Steve Kondikae271bc2015-11-15 02:50:53 +01001518#undef _nc_msec_cost_sp
1519int _nc_msec_cost_sp(
micky3879b9f5e72025-07-08 18:04:53 -04001520 SCREEN *sp,
1521 const char *const cap,
Steve Kondikae271bc2015-11-15 02:50:53 +01001522 int affcnt)
1523 { return(*(int *)0); }
1524
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301525#undef _nc_msec_cost
1526int _nc_msec_cost(
micky3879b9f5e72025-07-08 18:04:53 -04001527 const char *const cap,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301528 int affcnt)
1529 { return(*(int *)0); }
1530
Steve Kondikae271bc2015-11-15 02:50:53 +01001531#undef _nc_mvcur_resume_sp
1532void _nc_mvcur_resume_sp(
1533 SCREEN *sp)
1534 { /* void */ }
1535
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301536#undef _nc_mvcur_resume
1537void _nc_mvcur_resume(void)
1538 { /* void */ }
1539
Steve Kondikae271bc2015-11-15 02:50:53 +01001540#undef _nc_mvcur_init_sp
1541void _nc_mvcur_init_sp(
1542 SCREEN *sp)
1543 { /* void */ }
1544
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301545#undef _nc_mvcur_init
1546void _nc_mvcur_init(void)
1547 { /* void */ }
1548
Steve Kondikae271bc2015-11-15 02:50:53 +01001549#undef _nc_mvcur_wrap_sp
1550void _nc_mvcur_wrap_sp(
1551 SCREEN *sp)
1552 { /* void */ }
1553
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301554#undef _nc_mvcur_wrap
1555void _nc_mvcur_wrap(void)
1556 { /* void */ }
1557
Steve Kondikae271bc2015-11-15 02:50:53 +01001558#undef _nc_mvcur_sp
1559int _nc_mvcur_sp(
micky3879b9f5e72025-07-08 18:04:53 -04001560 SCREEN *sp,
1561 int yold,
1562 int xold,
1563 int ynew,
Steve Kondikae271bc2015-11-15 02:50:53 +01001564 int xnew)
1565 { return(*(int *)0); }
1566
1567#undef _nc_mvcur
1568int _nc_mvcur(
micky3879b9f5e72025-07-08 18:04:53 -04001569 int yold,
1570 int xold,
1571 int ynew,
Steve Kondikae271bc2015-11-15 02:50:53 +01001572 int xnew)
1573 { return(*(int *)0); }
1574
1575#undef mvcur_sp
1576int mvcur_sp(
micky3879b9f5e72025-07-08 18:04:53 -04001577 SCREEN *sp,
1578 int yold,
1579 int xold,
1580 int ynew,
Steve Kondikae271bc2015-11-15 02:50:53 +01001581 int xnew)
1582 { return(*(int *)0); }
1583
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301584#undef mvcur
1585int mvcur(
micky3879b9f5e72025-07-08 18:04:53 -04001586 int yold,
1587 int xold,
1588 int ynew,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301589 int xnew)
1590 { return(*(int *)0); }
1591
1592#undef _nc_optimize_enable
1593int _nc_optimize_enable;
1594
1595/* ./base/lib_mvwin.c */
1596
1597#undef mvwin
1598int mvwin(
micky3879b9f5e72025-07-08 18:04:53 -04001599 WINDOW *win,
1600 int by,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301601 int bx)
1602 { return(*(int *)0); }
1603
1604/* ./base/lib_newterm.c */
1605
Steve Kondikae271bc2015-11-15 02:50:53 +01001606#undef filter_sp
1607void filter_sp(
1608 SCREEN *sp)
1609 { /* void */ }
1610
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301611#undef filter
1612void filter(void)
1613 { /* void */ }
1614
Steve Kondikae271bc2015-11-15 02:50:53 +01001615#undef nofilter_sp
1616void nofilter_sp(
1617 SCREEN *sp)
1618 { /* void */ }
1619
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301620#undef nofilter
1621void nofilter(void)
1622 { /* void */ }
1623
Steve Kondikae271bc2015-11-15 02:50:53 +01001624#undef newterm_sp
1625SCREEN *newterm_sp(
micky3879b9f5e72025-07-08 18:04:53 -04001626 SCREEN *sp,
1627 const char *name,
1628 FILE *ofp,
Steve Kondikae271bc2015-11-15 02:50:53 +01001629 FILE *ifp)
1630 { return(*(SCREEN **)0); }
1631
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301632#undef newterm
1633SCREEN *newterm(
micky3879b9f5e72025-07-08 18:04:53 -04001634 const char *name,
1635 FILE *ofp,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301636 FILE *ifp)
1637 { return(*(SCREEN **)0); }
1638
1639/* ./base/lib_newwin.c */
1640
1641#undef _nc_freewin
1642int _nc_freewin(
1643 WINDOW *win)
1644 { return(*(int *)0); }
1645
Steve Kondikae271bc2015-11-15 02:50:53 +01001646#undef newwin_sp
1647WINDOW *newwin_sp(
micky3879b9f5e72025-07-08 18:04:53 -04001648 SCREEN *sp,
1649 int num_lines,
1650 int num_columns,
1651 int begy,
Steve Kondikae271bc2015-11-15 02:50:53 +01001652 int begx)
1653 { return(*(WINDOW **)0); }
1654
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301655#undef newwin
1656WINDOW *newwin(
micky3879b9f5e72025-07-08 18:04:53 -04001657 int num_lines,
1658 int num_columns,
1659 int begy,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301660 int begx)
1661 { return(*(WINDOW **)0); }
1662
1663#undef derwin
1664WINDOW *derwin(
micky3879b9f5e72025-07-08 18:04:53 -04001665 WINDOW *orig,
1666 int num_lines,
1667 int num_columns,
1668 int begy,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301669 int begx)
1670 { return(*(WINDOW **)0); }
1671
1672#undef subwin
1673WINDOW *subwin(
micky3879b9f5e72025-07-08 18:04:53 -04001674 WINDOW *w,
1675 int l,
1676 int c,
1677 int y,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301678 int x)
1679 { return(*(WINDOW **)0); }
1680
Steve Kondikae271bc2015-11-15 02:50:53 +01001681#undef _nc_makenew_sp
1682WINDOW *_nc_makenew_sp(
micky3879b9f5e72025-07-08 18:04:53 -04001683 SCREEN *sp,
1684 int num_lines,
1685 int num_columns,
1686 int begy,
1687 int begx,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301688 int flags)
1689 { return(*(WINDOW **)0); }
1690
Steve Kondikae271bc2015-11-15 02:50:53 +01001691#undef _nc_curscr_of
1692WINDOW *_nc_curscr_of(
1693 SCREEN *sp)
1694 { return(*(WINDOW **)0); }
1695
1696#undef _nc_newscr_of
1697WINDOW *_nc_newscr_of(
1698 SCREEN *sp)
1699 { return(*(WINDOW **)0); }
1700
1701#undef _nc_stdscr_of
1702WINDOW *_nc_stdscr_of(
1703 SCREEN *sp)
1704 { return(*(WINDOW **)0); }
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301705
1706/* ./base/lib_nl.c */
1707
Steve Kondikae271bc2015-11-15 02:50:53 +01001708#undef nl_sp
1709int nl_sp(
1710 SCREEN *sp)
1711 { return(*(int *)0); }
1712
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301713#undef nl
1714int nl(void)
1715 { return(*(int *)0); }
1716
Steve Kondikae271bc2015-11-15 02:50:53 +01001717#undef nonl_sp
1718int nonl_sp(
1719 SCREEN *sp)
1720 { return(*(int *)0); }
1721
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301722#undef nonl
1723int nonl(void)
1724 { return(*(int *)0); }
1725
1726/* ./base/lib_overlay.c */
1727
1728#undef overlay
1729int overlay(
micky3879b9f5e72025-07-08 18:04:53 -04001730 const WINDOW *win1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301731 WINDOW *win2)
1732 { return(*(int *)0); }
1733
1734#undef overwrite
1735int overwrite(
micky3879b9f5e72025-07-08 18:04:53 -04001736 const WINDOW *win1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301737 WINDOW *win2)
1738 { return(*(int *)0); }
1739
1740#undef copywin
1741int copywin(
micky3879b9f5e72025-07-08 18:04:53 -04001742 const WINDOW *src,
1743 WINDOW *dst,
1744 int sminrow,
1745 int smincol,
1746 int dminrow,
1747 int dmincol,
1748 int dmaxrow,
1749 int dmaxcol,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301750 int over)
1751 { return(*(int *)0); }
1752
1753/* ./base/lib_pad.c */
1754
Steve Kondikae271bc2015-11-15 02:50:53 +01001755#undef newpad_sp
1756WINDOW *newpad_sp(
micky3879b9f5e72025-07-08 18:04:53 -04001757 SCREEN *sp,
1758 int l,
Steve Kondikae271bc2015-11-15 02:50:53 +01001759 int c)
1760 { return(*(WINDOW **)0); }
1761
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301762#undef newpad
1763WINDOW *newpad(
micky3879b9f5e72025-07-08 18:04:53 -04001764 int l,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301765 int c)
1766 { return(*(WINDOW **)0); }
1767
1768#undef subpad
1769WINDOW *subpad(
micky3879b9f5e72025-07-08 18:04:53 -04001770 WINDOW *orig,
1771 int l,
1772 int c,
1773 int begy,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301774 int begx)
1775 { return(*(WINDOW **)0); }
1776
1777#undef prefresh
1778int prefresh(
micky3879b9f5e72025-07-08 18:04:53 -04001779 WINDOW *win,
1780 int pminrow,
1781 int pmincol,
1782 int sminrow,
1783 int smincol,
1784 int smaxrow,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301785 int smaxcol)
1786 { return(*(int *)0); }
1787
1788#undef pnoutrefresh
1789int pnoutrefresh(
micky3879b9f5e72025-07-08 18:04:53 -04001790 WINDOW *win,
1791 int pminrow,
1792 int pmincol,
1793 int sminrow,
1794 int smincol,
1795 int smaxrow,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301796 int smaxcol)
1797 { return(*(int *)0); }
1798
1799#undef pechochar
1800int pechochar(
micky3879b9f5e72025-07-08 18:04:53 -04001801 WINDOW *pad,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301802 const chtype ch)
1803 { return(*(int *)0); }
1804
1805/* ./base/lib_printw.c */
1806
1807#undef printw
1808int printw(
micky3879b9f5e72025-07-08 18:04:53 -04001809 const char *fmt,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301810 ...)
1811 { return(*(int *)0); }
1812
1813#undef wprintw
1814int wprintw(
micky3879b9f5e72025-07-08 18:04:53 -04001815 WINDOW *win,
1816 const char *fmt,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301817 ...)
1818 { return(*(int *)0); }
1819
1820#undef mvprintw
1821int mvprintw(
micky3879b9f5e72025-07-08 18:04:53 -04001822 int y,
1823 int x,
1824 const char *fmt,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301825 ...)
1826 { return(*(int *)0); }
1827
1828#undef mvwprintw
1829int mvwprintw(
micky3879b9f5e72025-07-08 18:04:53 -04001830 WINDOW *win,
1831 int y,
1832 int x,
1833 const char *fmt,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301834 ...)
1835 { return(*(int *)0); }
1836
1837#undef vwprintw
1838int vwprintw(
micky3879b9f5e72025-07-08 18:04:53 -04001839 WINDOW *win,
1840 const char *fmt,
1841 va_list argp)
1842 { return(*(int *)0); }
1843
1844#undef vw_printw
1845int vw_printw(
1846 WINDOW *win,
1847 const char *fmt,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301848 va_list argp)
1849 { return(*(int *)0); }
1850
1851/* ./base/lib_redrawln.c */
1852
1853#undef wredrawln
1854int wredrawln(
micky3879b9f5e72025-07-08 18:04:53 -04001855 WINDOW *win,
1856 int beg,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301857 int num)
1858 { return(*(int *)0); }
1859
1860/* ./base/lib_refresh.c */
1861
1862#undef wrefresh
1863int wrefresh(
1864 WINDOW *win)
1865 { return(*(int *)0); }
1866
1867#undef wnoutrefresh
1868int wnoutrefresh(
1869 WINDOW *win)
1870 { return(*(int *)0); }
1871
1872/* ./base/lib_restart.c */
1873
Steve Kondikae271bc2015-11-15 02:50:53 +01001874#undef restartterm_sp
1875int restartterm_sp(
micky3879b9f5e72025-07-08 18:04:53 -04001876 SCREEN *sp,
1877 const char *termp,
1878 int filenum,
Steve Kondikae271bc2015-11-15 02:50:53 +01001879 int *errret)
1880 { return(*(int *)0); }
1881
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301882#undef restartterm
1883int restartterm(
micky3879b9f5e72025-07-08 18:04:53 -04001884 const char *termp,
1885 int filenum,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301886 int *errret)
1887 { return(*(int *)0); }
1888
1889/* ./base/lib_scanw.c */
1890
1891#undef vwscanw
1892int vwscanw(
micky3879b9f5e72025-07-08 18:04:53 -04001893 WINDOW *win,
1894 const char *fmt,
1895 va_list argp)
1896 { return(*(int *)0); }
1897
1898#undef vw_scanw
1899int vw_scanw(
1900 WINDOW *win,
1901 const char *fmt,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301902 va_list argp)
1903 { return(*(int *)0); }
1904
1905#undef scanw
1906int scanw(
micky3879b9f5e72025-07-08 18:04:53 -04001907 const char *fmt,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301908 ...)
1909 { return(*(int *)0); }
1910
1911#undef wscanw
1912int wscanw(
micky3879b9f5e72025-07-08 18:04:53 -04001913 WINDOW *win,
1914 const char *fmt,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301915 ...)
1916 { return(*(int *)0); }
1917
1918#undef mvscanw
1919int mvscanw(
micky3879b9f5e72025-07-08 18:04:53 -04001920 int y,
1921 int x,
1922 const char *fmt,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301923 ...)
1924 { return(*(int *)0); }
1925
1926#undef mvwscanw
1927int mvwscanw(
micky3879b9f5e72025-07-08 18:04:53 -04001928 WINDOW *win,
1929 int y,
1930 int x,
1931 const char *fmt,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301932 ...)
1933 { return(*(int *)0); }
1934
1935/* ./base/lib_screen.c */
1936
Steve Kondikae271bc2015-11-15 02:50:53 +01001937#undef getwin_sp
1938WINDOW *getwin_sp(
micky3879b9f5e72025-07-08 18:04:53 -04001939 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01001940 FILE *filep)
1941 { return(*(WINDOW **)0); }
1942
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301943#undef getwin
1944WINDOW *getwin(
1945 FILE *filep)
1946 { return(*(WINDOW **)0); }
1947
1948#undef putwin
1949int putwin(
micky3879b9f5e72025-07-08 18:04:53 -04001950 WINDOW *win,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301951 FILE *filep)
1952 { return(*(int *)0); }
1953
Steve Kondikae271bc2015-11-15 02:50:53 +01001954#undef scr_restore_sp
1955int scr_restore_sp(
micky3879b9f5e72025-07-08 18:04:53 -04001956 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01001957 const char *file)
1958 { return(*(int *)0); }
1959
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301960#undef scr_restore
1961int scr_restore(
1962 const char *file)
1963 { return(*(int *)0); }
1964
1965#undef scr_dump
1966int scr_dump(
1967 const char *file)
1968 { return(*(int *)0); }
1969
Steve Kondikae271bc2015-11-15 02:50:53 +01001970#undef scr_init_sp
1971int scr_init_sp(
micky3879b9f5e72025-07-08 18:04:53 -04001972 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01001973 const char *file)
1974 { return(*(int *)0); }
1975
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301976#undef scr_init
1977int scr_init(
1978 const char *file)
1979 { return(*(int *)0); }
1980
Steve Kondikae271bc2015-11-15 02:50:53 +01001981#undef scr_set_sp
1982int scr_set_sp(
micky3879b9f5e72025-07-08 18:04:53 -04001983 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01001984 const char *file)
1985 { return(*(int *)0); }
1986
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301987#undef scr_set
1988int scr_set(
1989 const char *file)
1990 { return(*(int *)0); }
1991
1992/* ./base/lib_scroll.c */
1993
1994#undef _nc_scroll_window
1995void _nc_scroll_window(
micky3879b9f5e72025-07-08 18:04:53 -04001996 WINDOW *win,
1997 int const n,
1998 int const top,
1999 int const bottom,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302000 chtype blank)
2001 { /* void */ }
2002
2003#undef wscrl
2004int wscrl(
micky3879b9f5e72025-07-08 18:04:53 -04002005 WINDOW *win,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302006 int n)
2007 { return(*(int *)0); }
2008
2009/* ./base/lib_scrollok.c */
2010
2011#undef scrollok
2012int scrollok(
micky3879b9f5e72025-07-08 18:04:53 -04002013 WINDOW *win,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302014 NCURSES_BOOL flag)
2015 { return(*(int *)0); }
2016
2017/* ./base/lib_scrreg.c */
2018
2019#undef wsetscrreg
2020int wsetscrreg(
micky3879b9f5e72025-07-08 18:04:53 -04002021 WINDOW *win,
2022 int top,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302023 int bottom)
2024 { return(*(int *)0); }
2025
2026/* ./base/lib_set_term.c */
2027
2028#undef set_term
2029SCREEN *set_term(
2030 SCREEN *screenp)
2031 { return(*(SCREEN **)0); }
2032
2033#undef delscreen
2034void delscreen(
2035 SCREEN *sp)
2036 { /* void */ }
2037
Steve Kondikae271bc2015-11-15 02:50:53 +01002038#undef _nc_setupscreen_sp
2039int _nc_setupscreen_sp(
micky3879b9f5e72025-07-08 18:04:53 -04002040 SCREEN **spp,
2041 int slines,
2042 int scolumns,
2043 FILE *output,
2044 int filtered,
Steve Kondikae271bc2015-11-15 02:50:53 +01002045 int slk_format)
2046 { return(*(int *)0); }
2047
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302048#undef _nc_setupscreen
2049int _nc_setupscreen(
micky3879b9f5e72025-07-08 18:04:53 -04002050 int slines,
2051 int scolumns,
2052 FILE *output,
2053 int filtered,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302054 int slk_format)
2055 { return(*(int *)0); }
2056
Steve Kondikae271bc2015-11-15 02:50:53 +01002057#undef _nc_ripoffline_sp
2058int _nc_ripoffline_sp(
micky3879b9f5e72025-07-08 18:04:53 -04002059 SCREEN *sp,
2060 int line,
Steve Kondikae271bc2015-11-15 02:50:53 +01002061 int (*init)(
micky3879b9f5e72025-07-08 18:04:53 -04002062 WINDOW *p1,
Steve Kondikae271bc2015-11-15 02:50:53 +01002063 int p2))
2064 { return(*(int *)0); }
2065
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302066#undef _nc_ripoffline
2067int _nc_ripoffline(
micky3879b9f5e72025-07-08 18:04:53 -04002068 int line,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302069 int (*init)(
micky3879b9f5e72025-07-08 18:04:53 -04002070 WINDOW *p1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302071 int p2))
2072 { return(*(int *)0); }
2073
Steve Kondikae271bc2015-11-15 02:50:53 +01002074#undef ripoffline_sp
2075int ripoffline_sp(
micky3879b9f5e72025-07-08 18:04:53 -04002076 SCREEN *sp,
2077 int line,
Steve Kondikae271bc2015-11-15 02:50:53 +01002078 int (*init)(
micky3879b9f5e72025-07-08 18:04:53 -04002079 WINDOW *p1,
Steve Kondikae271bc2015-11-15 02:50:53 +01002080 int p2))
2081 { return(*(int *)0); }
2082
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302083#undef ripoffline
2084int ripoffline(
micky3879b9f5e72025-07-08 18:04:53 -04002085 int line,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302086 int (*init)(
micky3879b9f5e72025-07-08 18:04:53 -04002087 WINDOW *p1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302088 int p2))
2089 { return(*(int *)0); }
2090
2091/* ./base/lib_slk.c */
2092
Steve Kondikae271bc2015-11-15 02:50:53 +01002093#undef _nc_format_slks
2094int _nc_format_slks(
micky3879b9f5e72025-07-08 18:04:53 -04002095 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01002096 int cols)
2097 { return(*(int *)0); }
2098
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302099#undef _nc_slk_initialize
2100int _nc_slk_initialize(
micky3879b9f5e72025-07-08 18:04:53 -04002101 WINDOW *stwin,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302102 int cols)
2103 { return(*(int *)0); }
2104
Steve Kondikae271bc2015-11-15 02:50:53 +01002105#undef slk_restore_sp
2106int slk_restore_sp(
2107 SCREEN *sp)
2108 { return(*(int *)0); }
2109
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302110#undef slk_restore
2111int slk_restore(void)
2112 { return(*(int *)0); }
2113
2114/* ./base/lib_slkatr_set.c */
2115
Steve Kondikae271bc2015-11-15 02:50:53 +01002116#undef slk_attr_set_sp
2117int slk_attr_set_sp(
micky3879b9f5e72025-07-08 18:04:53 -04002118 SCREEN *sp,
2119 const attr_t attr,
2120 short pair_arg,
Steve Kondikae271bc2015-11-15 02:50:53 +01002121 void *opts)
2122 { return(*(int *)0); }
2123
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302124#undef slk_attr_set
2125int slk_attr_set(
micky3879b9f5e72025-07-08 18:04:53 -04002126 const attr_t attr,
2127 short pair_arg,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302128 void *opts)
2129 { return(*(int *)0); }
2130
2131/* ./base/lib_slkatrof.c */
2132
Steve Kondikae271bc2015-11-15 02:50:53 +01002133#undef slk_attroff_sp
2134int slk_attroff_sp(
micky3879b9f5e72025-07-08 18:04:53 -04002135 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01002136 const chtype attr)
2137 { return(*(int *)0); }
2138
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302139#undef slk_attroff
2140int slk_attroff(
2141 const chtype attr)
2142 { return(*(int *)0); }
2143
2144/* ./base/lib_slkatron.c */
2145
Steve Kondikae271bc2015-11-15 02:50:53 +01002146#undef slk_attron_sp
2147int slk_attron_sp(
micky3879b9f5e72025-07-08 18:04:53 -04002148 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01002149 const chtype attr)
2150 { return(*(int *)0); }
2151
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302152#undef slk_attron
2153int slk_attron(
2154 const chtype attr)
2155 { return(*(int *)0); }
2156
2157/* ./base/lib_slkatrset.c */
2158
Steve Kondikae271bc2015-11-15 02:50:53 +01002159#undef slk_attrset_sp
2160int slk_attrset_sp(
micky3879b9f5e72025-07-08 18:04:53 -04002161 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01002162 const chtype attr)
2163 { return(*(int *)0); }
2164
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302165#undef slk_attrset
2166int slk_attrset(
2167 const chtype attr)
2168 { return(*(int *)0); }
2169
2170/* ./base/lib_slkattr.c */
2171
Steve Kondikae271bc2015-11-15 02:50:53 +01002172#undef slk_attr_sp
2173attr_t slk_attr_sp(
2174 SCREEN *sp)
2175 { return(*(attr_t *)0); }
2176
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302177#undef slk_attr
2178attr_t slk_attr(void)
2179 { return(*(attr_t *)0); }
2180
2181/* ./base/lib_slkclear.c */
2182
Steve Kondikae271bc2015-11-15 02:50:53 +01002183#undef slk_clear_sp
2184int slk_clear_sp(
2185 SCREEN *sp)
2186 { return(*(int *)0); }
2187
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302188#undef slk_clear
2189int slk_clear(void)
2190 { return(*(int *)0); }
2191
2192/* ./base/lib_slkcolor.c */
2193
Steve Kondikae271bc2015-11-15 02:50:53 +01002194#undef slk_color_sp
2195int slk_color_sp(
micky3879b9f5e72025-07-08 18:04:53 -04002196 SCREEN *sp,
2197 short pair_arg)
Steve Kondikae271bc2015-11-15 02:50:53 +01002198 { return(*(int *)0); }
2199
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302200#undef slk_color
2201int slk_color(
micky3879b9f5e72025-07-08 18:04:53 -04002202 short pair_arg)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302203 { return(*(int *)0); }
2204
2205/* ./base/lib_slkinit.c */
2206
Steve Kondikae271bc2015-11-15 02:50:53 +01002207#undef slk_init_sp
2208int slk_init_sp(
micky3879b9f5e72025-07-08 18:04:53 -04002209 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01002210 int format)
2211 { return(*(int *)0); }
2212
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302213#undef slk_init
2214int slk_init(
2215 int format)
2216 { return(*(int *)0); }
2217
2218/* ./base/lib_slklab.c */
2219
Steve Kondikae271bc2015-11-15 02:50:53 +01002220#undef slk_label_sp
2221char *slk_label_sp(
micky3879b9f5e72025-07-08 18:04:53 -04002222 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01002223 int n)
2224 { return(*(char **)0); }
2225
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302226#undef slk_label
2227char *slk_label(
2228 int n)
2229 { return(*(char **)0); }
2230
2231/* ./base/lib_slkrefr.c */
2232
Steve Kondikae271bc2015-11-15 02:50:53 +01002233#undef slk_noutrefresh_sp
2234int slk_noutrefresh_sp(
2235 SCREEN *sp)
2236 { return(*(int *)0); }
2237
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302238#undef slk_noutrefresh
2239int slk_noutrefresh(void)
2240 { return(*(int *)0); }
2241
Steve Kondikae271bc2015-11-15 02:50:53 +01002242#undef slk_refresh_sp
2243int slk_refresh_sp(
2244 SCREEN *sp)
2245 { return(*(int *)0); }
2246
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302247#undef slk_refresh
2248int slk_refresh(void)
2249 { return(*(int *)0); }
2250
2251/* ./base/lib_slkset.c */
2252
Steve Kondikae271bc2015-11-15 02:50:53 +01002253#undef slk_set_sp
2254int slk_set_sp(
micky3879b9f5e72025-07-08 18:04:53 -04002255 SCREEN *sp,
2256 int i,
2257 const char *astr,
Steve Kondikae271bc2015-11-15 02:50:53 +01002258 int format)
2259 { return(*(int *)0); }
2260
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302261#undef slk_set
2262int slk_set(
micky3879b9f5e72025-07-08 18:04:53 -04002263 int i,
2264 const char *astr,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302265 int format)
2266 { return(*(int *)0); }
2267
2268/* ./base/lib_slktouch.c */
2269
Steve Kondikae271bc2015-11-15 02:50:53 +01002270#undef slk_touch_sp
2271int slk_touch_sp(
2272 SCREEN *sp)
2273 { return(*(int *)0); }
2274
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302275#undef slk_touch
2276int slk_touch(void)
2277 { return(*(int *)0); }
2278
2279/* ./base/lib_touch.c */
2280
2281#undef is_linetouched
2282NCURSES_BOOL is_linetouched(
micky3879b9f5e72025-07-08 18:04:53 -04002283 WINDOW *win,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302284 int line)
2285 { return(*(NCURSES_BOOL *)0); }
2286
2287#undef is_wintouched
2288NCURSES_BOOL is_wintouched(
2289 WINDOW *win)
2290 { return(*(NCURSES_BOOL *)0); }
2291
2292#undef wtouchln
2293int wtouchln(
micky3879b9f5e72025-07-08 18:04:53 -04002294 WINDOW *win,
2295 int y,
2296 int n,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302297 int changed)
2298 { return(*(int *)0); }
2299
2300/* ./trace/lib_tracedmp.c */
2301
2302#undef _tracedump
2303void _tracedump(
micky3879b9f5e72025-07-08 18:04:53 -04002304 const char *name,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302305 WINDOW *win)
2306 { /* void */ }
2307
2308/* ./trace/lib_tracemse.c */
2309
Steve Kondikae271bc2015-11-15 02:50:53 +01002310#undef _nc_trace_mmask_t
2311char *_nc_trace_mmask_t(
micky3879b9f5e72025-07-08 18:04:53 -04002312 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01002313 mmask_t code)
2314 { return(*(char **)0); }
2315
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302316#undef _nc_tracemouse
2317char *_nc_tracemouse(
micky3879b9f5e72025-07-08 18:04:53 -04002318 SCREEN *sp,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302319 MEVENT const *ep)
2320 { return(*(char **)0); }
2321
Steve Kondikae271bc2015-11-15 02:50:53 +01002322#undef _nc_retrace_mmask_t
2323mmask_t _nc_retrace_mmask_t(
micky3879b9f5e72025-07-08 18:04:53 -04002324 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01002325 mmask_t code)
2326 { return(*(mmask_t *)0); }
2327
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302328#undef _tracemouse
2329char *_tracemouse(
2330 MEVENT const *ep)
2331 { return(*(char **)0); }
2332
2333/* ./tty/lib_tstp.c */
2334
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302335#undef _nc_signal_handler
2336void _nc_signal_handler(
Steve Kondikae271bc2015-11-15 02:50:53 +01002337 int enable)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302338 { /* void */ }
2339
2340/* ./base/lib_ungetch.c */
2341
2342#undef _nc_fifo_dump
2343void _nc_fifo_dump(
2344 SCREEN *sp)
2345 { /* void */ }
2346
Steve Kondikae271bc2015-11-15 02:50:53 +01002347#undef ungetch_sp
2348int ungetch_sp(
micky3879b9f5e72025-07-08 18:04:53 -04002349 SCREEN *sp,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302350 int ch)
2351 { return(*(int *)0); }
2352
2353#undef ungetch
2354int ungetch(
2355 int ch)
2356 { return(*(int *)0); }
2357
2358/* ./tty/lib_vidattr.c */
2359
Steve Kondikae271bc2015-11-15 02:50:53 +01002360#undef vidputs_sp
2361int vidputs_sp(
micky3879b9f5e72025-07-08 18:04:53 -04002362 SCREEN *sp,
2363 chtype newmode,
Steve Kondikae271bc2015-11-15 02:50:53 +01002364 NCURSES_OUTC_sp outc)
2365 { return(*(int *)0); }
2366
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302367#undef vidputs
2368int vidputs(
micky3879b9f5e72025-07-08 18:04:53 -04002369 chtype newmode,
Steve Kondikae271bc2015-11-15 02:50:53 +01002370 NCURSES_OUTC outc)
2371 { return(*(int *)0); }
2372
2373#undef vidattr_sp
2374int vidattr_sp(
micky3879b9f5e72025-07-08 18:04:53 -04002375 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01002376 chtype newmode)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302377 { return(*(int *)0); }
2378
2379#undef vidattr
2380int vidattr(
2381 chtype newmode)
2382 { return(*(int *)0); }
2383
Steve Kondikae271bc2015-11-15 02:50:53 +01002384#undef termattrs_sp
2385chtype termattrs_sp(
2386 SCREEN *sp)
2387 { return(*(chtype *)0); }
2388
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302389#undef termattrs
2390chtype termattrs(void)
2391 { return(*(chtype *)0); }
2392
2393/* ./base/lib_vline.c */
2394
2395#undef wvline
2396int wvline(
micky3879b9f5e72025-07-08 18:04:53 -04002397 WINDOW *win,
2398 chtype ch,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302399 int n)
2400 { return(*(int *)0); }
2401
2402/* ./base/lib_wattroff.c */
2403
2404#undef wattr_off
2405int wattr_off(
micky3879b9f5e72025-07-08 18:04:53 -04002406 WINDOW *win,
2407 attr_t at,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302408 void *opts)
2409 { return(*(int *)0); }
2410
2411/* ./base/lib_wattron.c */
2412
2413#undef wattr_on
2414int wattr_on(
micky3879b9f5e72025-07-08 18:04:53 -04002415 WINDOW *win,
2416 attr_t at,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302417 void *opts)
2418 { return(*(int *)0); }
2419
2420/* ./base/lib_winch.c */
2421
2422#undef winch
2423chtype winch(
2424 WINDOW *win)
2425 { return(*(chtype *)0); }
2426
2427/* ./base/lib_window.c */
2428
2429#undef _nc_synchook
2430void _nc_synchook(
2431 WINDOW *win)
2432 { /* void */ }
2433
2434#undef mvderwin
2435int mvderwin(
micky3879b9f5e72025-07-08 18:04:53 -04002436 WINDOW *win,
2437 int y,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302438 int x)
2439 { return(*(int *)0); }
2440
2441#undef syncok
2442int syncok(
micky3879b9f5e72025-07-08 18:04:53 -04002443 WINDOW *win,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302444 NCURSES_BOOL bf)
2445 { return(*(int *)0); }
2446
2447#undef wsyncup
2448void wsyncup(
2449 WINDOW *win)
2450 { /* void */ }
2451
2452#undef wsyncdown
2453void wsyncdown(
2454 WINDOW *win)
2455 { /* void */ }
2456
2457#undef wcursyncup
2458void wcursyncup(
2459 WINDOW *win)
2460 { /* void */ }
2461
2462#undef dupwin
2463WINDOW *dupwin(
2464 WINDOW *win)
2465 { return(*(WINDOW **)0); }
2466
2467/* ./base/nc_panel.c */
2468
Steve Kondikae271bc2015-11-15 02:50:53 +01002469#undef _nc_panelhook_sp
2470struct panelhook *_nc_panelhook_sp(
2471 SCREEN *sp)
2472 { return(*(struct panelhook **)0); }
2473
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302474#undef _nc_panelhook
2475struct panelhook *_nc_panelhook(void)
2476 { return(*(struct panelhook **)0); }
2477
2478/* ./base/safe_sprintf.c */
2479
Steve Kondikae271bc2015-11-15 02:50:53 +01002480#undef _nc_printf_string_sp
2481char *_nc_printf_string_sp(
micky3879b9f5e72025-07-08 18:04:53 -04002482 SCREEN *sp,
2483 const char *fmt,
Steve Kondikae271bc2015-11-15 02:50:53 +01002484 va_list ap)
2485 { return(*(char **)0); }
2486
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302487#undef _nc_printf_string
2488char *_nc_printf_string(
micky3879b9f5e72025-07-08 18:04:53 -04002489 const char *fmt,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302490 va_list ap)
2491 { return(*(char **)0); }
2492
2493/* ./tty/tty_update.c */
2494
Steve Kondikae271bc2015-11-15 02:50:53 +01002495#undef doupdate_sp
2496int doupdate_sp(
2497 SCREEN *sp)
2498 { return(*(int *)0); }
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302499
2500#undef doupdate
2501int doupdate(void)
2502 { return(*(int *)0); }
2503
Steve Kondikae271bc2015-11-15 02:50:53 +01002504#undef _nc_scrolln_sp
2505int _nc_scrolln_sp(
micky3879b9f5e72025-07-08 18:04:53 -04002506 SCREEN *sp,
2507 int n,
2508 int top,
2509 int bot,
Steve Kondikae271bc2015-11-15 02:50:53 +01002510 int maxy)
2511 { return(*(int *)0); }
2512
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302513#undef _nc_scrolln
2514int _nc_scrolln(
micky3879b9f5e72025-07-08 18:04:53 -04002515 int n,
2516 int top,
2517 int bot,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302518 int maxy)
2519 { return(*(int *)0); }
2520
Steve Kondikae271bc2015-11-15 02:50:53 +01002521#undef _nc_screen_resume_sp
2522void _nc_screen_resume_sp(
2523 SCREEN *sp)
2524 { /* void */ }
2525
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302526#undef _nc_screen_resume
2527void _nc_screen_resume(void)
2528 { /* void */ }
2529
Steve Kondikae271bc2015-11-15 02:50:53 +01002530#undef _nc_screen_init_sp
2531void _nc_screen_init_sp(
2532 SCREEN *sp)
2533 { /* void */ }
2534
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302535#undef _nc_screen_init
2536void _nc_screen_init(void)
2537 { /* void */ }
2538
Steve Kondikae271bc2015-11-15 02:50:53 +01002539#undef _nc_screen_wrap_sp
2540void _nc_screen_wrap_sp(
2541 SCREEN *sp)
2542 { /* void */ }
2543
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302544#undef _nc_screen_wrap
2545void _nc_screen_wrap(void)
2546 { /* void */ }
2547
Steve Kondikae271bc2015-11-15 02:50:53 +01002548#undef _nc_do_xmc_glitch_sp
2549void _nc_do_xmc_glitch_sp(
micky3879b9f5e72025-07-08 18:04:53 -04002550 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01002551 attr_t previous)
2552 { /* void */ }
2553
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302554#undef _nc_do_xmc_glitch
2555void _nc_do_xmc_glitch(
2556 attr_t previous)
2557 { /* void */ }
2558
2559/* ./trace/varargs.c */
2560
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302561#undef _nc_varargs
2562char *_nc_varargs(
micky3879b9f5e72025-07-08 18:04:53 -04002563 const char *fmt,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302564 va_list ap)
2565 { return(*(char **)0); }
2566
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302567/* ./base/vsscanf.c */
2568
2569#undef _nc_vsscanf
2570void _nc_vsscanf(void)
2571 { /* void */ }
2572
2573/* ./base/lib_freeall.c */
2574
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302575#undef _nc_freeall
2576void _nc_freeall(void)
2577 { /* void */ }
2578
Steve Kondikae271bc2015-11-15 02:50:53 +01002579#undef _nc_free_and_exit_sp
2580void _nc_free_and_exit_sp(
micky3879b9f5e72025-07-08 18:04:53 -04002581 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01002582 int code)
2583 { /* void */ }
2584
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302585#undef _nc_free_and_exit
2586void _nc_free_and_exit(
2587 int code)
2588 { /* void */ }
2589
micky3879b9f5e72025-07-08 18:04:53 -04002590#undef exit_curses
2591void exit_curses(
2592 int code)
2593 { /* void */ }
2594
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302595/* ./expanded.c */
2596
2597#undef _nc_toggle_attr_on
2598void _nc_toggle_attr_on(
micky3879b9f5e72025-07-08 18:04:53 -04002599 attr_t *S,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302600 attr_t at)
2601 { /* void */ }
2602
2603#undef _nc_toggle_attr_off
2604void _nc_toggle_attr_off(
micky3879b9f5e72025-07-08 18:04:53 -04002605 attr_t *S,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302606 attr_t at)
2607 { /* void */ }
2608
Steve Kondikae271bc2015-11-15 02:50:53 +01002609#undef _nc_DelCharCost_sp
2610int _nc_DelCharCost_sp(
micky3879b9f5e72025-07-08 18:04:53 -04002611 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01002612 int count)
2613 { return(*(int *)0); }
2614
2615#undef _nc_InsCharCost_sp
2616int _nc_InsCharCost_sp(
micky3879b9f5e72025-07-08 18:04:53 -04002617 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01002618 int count)
2619 { return(*(int *)0); }
2620
2621#undef _nc_UpdateAttrs_sp
2622void _nc_UpdateAttrs_sp(
micky3879b9f5e72025-07-08 18:04:53 -04002623 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01002624 chtype c)
2625 { /* void */ }
2626
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302627#undef _nc_DelCharCost
2628int _nc_DelCharCost(
2629 int count)
2630 { return(*(int *)0); }
2631
2632#undef _nc_InsCharCost
2633int _nc_InsCharCost(
2634 int count)
2635 { return(*(int *)0); }
2636
2637#undef _nc_UpdateAttrs
2638void _nc_UpdateAttrs(
2639 chtype c)
2640 { /* void */ }
2641
2642/* ./base/legacy_coding.c */
2643
Steve Kondikae271bc2015-11-15 02:50:53 +01002644#undef use_legacy_coding_sp
2645int use_legacy_coding_sp(
micky3879b9f5e72025-07-08 18:04:53 -04002646 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01002647 int level)
2648 { return(*(int *)0); }
2649
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302650#undef use_legacy_coding
2651int use_legacy_coding(
2652 int level)
2653 { return(*(int *)0); }
2654
2655/* ./base/lib_dft_fgbg.c */
2656
Steve Kondikae271bc2015-11-15 02:50:53 +01002657#undef use_default_colors_sp
2658int use_default_colors_sp(
2659 SCREEN *sp)
2660 { return(*(int *)0); }
2661
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302662#undef use_default_colors
2663int use_default_colors(void)
2664 { return(*(int *)0); }
2665
Steve Kondikae271bc2015-11-15 02:50:53 +01002666#undef assume_default_colors_sp
2667int assume_default_colors_sp(
micky3879b9f5e72025-07-08 18:04:53 -04002668 SCREEN *sp,
2669 int fg,
Steve Kondikae271bc2015-11-15 02:50:53 +01002670 int bg)
2671 { return(*(int *)0); }
2672
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302673#undef assume_default_colors
2674int assume_default_colors(
micky3879b9f5e72025-07-08 18:04:53 -04002675 int fg,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302676 int bg)
2677 { return(*(int *)0); }
2678
2679/* ./tinfo/lib_print.c */
2680
Steve Kondikae271bc2015-11-15 02:50:53 +01002681#undef mcprint_sp
2682int mcprint_sp(
micky3879b9f5e72025-07-08 18:04:53 -04002683 SCREEN *sp,
2684 char *data,
Steve Kondikae271bc2015-11-15 02:50:53 +01002685 int len)
2686 { return(*(int *)0); }
2687
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302688#undef mcprint
2689int mcprint(
micky3879b9f5e72025-07-08 18:04:53 -04002690 char *data,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302691 int len)
2692 { return(*(int *)0); }
2693
micky3879b9f5e72025-07-08 18:04:53 -04002694/* ./base/new_pair.c */
2695
2696#undef _nc_new_pair
2697void _nc_new_pair(void)
2698 { /* void */ }
2699
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302700/* ./base/resizeterm.c */
2701
Steve Kondikae271bc2015-11-15 02:50:53 +01002702#undef is_term_resized_sp
2703NCURSES_BOOL is_term_resized_sp(
micky3879b9f5e72025-07-08 18:04:53 -04002704 SCREEN *sp,
2705 int ToLines,
Steve Kondikae271bc2015-11-15 02:50:53 +01002706 int ToCols)
2707 { return(*(NCURSES_BOOL *)0); }
2708
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302709#undef is_term_resized
2710NCURSES_BOOL is_term_resized(
micky3879b9f5e72025-07-08 18:04:53 -04002711 int ToLines,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302712 int ToCols)
2713 { return(*(NCURSES_BOOL *)0); }
2714
Steve Kondikae271bc2015-11-15 02:50:53 +01002715#undef resize_term_sp
2716int resize_term_sp(
micky3879b9f5e72025-07-08 18:04:53 -04002717 SCREEN *sp,
2718 int ToLines,
Steve Kondikae271bc2015-11-15 02:50:53 +01002719 int ToCols)
2720 { return(*(int *)0); }
2721
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302722#undef resize_term
2723int resize_term(
micky3879b9f5e72025-07-08 18:04:53 -04002724 int ToLines,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302725 int ToCols)
2726 { return(*(int *)0); }
2727
Steve Kondikae271bc2015-11-15 02:50:53 +01002728#undef resizeterm_sp
2729int resizeterm_sp(
micky3879b9f5e72025-07-08 18:04:53 -04002730 SCREEN *sp,
2731 int ToLines,
Steve Kondikae271bc2015-11-15 02:50:53 +01002732 int ToCols)
2733 { return(*(int *)0); }
2734
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302735#undef resizeterm
2736int resizeterm(
micky3879b9f5e72025-07-08 18:04:53 -04002737 int ToLines,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302738 int ToCols)
2739 { return(*(int *)0); }
2740
2741/* ./trace/trace_xnames.c */
2742
2743#undef _nc_trace_xnames
2744void _nc_trace_xnames(
2745 TERMTYPE *tp)
2746 { /* void */ }
2747
2748/* ./tinfo/use_screen.c */
2749
2750#undef use_screen
2751int use_screen(
micky3879b9f5e72025-07-08 18:04:53 -04002752 SCREEN *screen,
2753 NCURSES_SCREEN_CB func,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302754 void *data)
2755 { return(*(int *)0); }
2756
2757/* ./base/use_window.c */
2758
2759#undef use_window
2760int use_window(
micky3879b9f5e72025-07-08 18:04:53 -04002761 WINDOW *win,
2762 NCURSES_WINDOW_CB func,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302763 void *data)
2764 { return(*(int *)0); }
2765
2766/* ./base/wresize.c */
2767
2768#undef wresize
2769int wresize(
micky3879b9f5e72025-07-08 18:04:53 -04002770 WINDOW *win,
2771 int ToLines,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302772 int ToCols)
2773 { return(*(int *)0); }
2774
2775/* ./tinfo/access.c */
2776
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302777#undef _nc_rootname
2778char *_nc_rootname(
2779 char *path)
2780 { return(*(char **)0); }
2781
2782#undef _nc_is_abs_path
2783NCURSES_BOOL _nc_is_abs_path(
2784 const char *path)
2785 { return(*(NCURSES_BOOL *)0); }
2786
2787#undef _nc_pathlast
2788unsigned _nc_pathlast(
2789 const char *path)
2790 { return(*(unsigned *)0); }
2791
2792#undef _nc_basename
2793char *_nc_basename(
2794 char *path)
2795 { return(*(char **)0); }
2796
2797#undef _nc_access
2798int _nc_access(
micky3879b9f5e72025-07-08 18:04:53 -04002799 const char *path,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302800 int mode)
2801 { return(*(int *)0); }
2802
2803#undef _nc_is_dir_path
2804NCURSES_BOOL _nc_is_dir_path(
2805 const char *path)
2806 { return(*(NCURSES_BOOL *)0); }
2807
2808#undef _nc_is_file_path
2809NCURSES_BOOL _nc_is_file_path(
2810 const char *path)
2811 { return(*(NCURSES_BOOL *)0); }
2812
2813#undef _nc_env_access
2814int _nc_env_access(void)
2815 { return(*(int *)0); }
2816
micky3879b9f5e72025-07-08 18:04:53 -04002817#undef _nc_safe_fopen
2818FILE *_nc_safe_fopen(
2819 const char *path,
2820 const char *mode)
2821 { return(*(FILE **)0); }
2822
2823#undef _nc_safe_open3
2824int _nc_safe_open3(
2825 const char *path,
2826 int flags,
2827 mode_t mode)
2828 { return(*(int *)0); }
2829
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302830/* ./tinfo/add_tries.c */
2831
2832#undef _nc_add_to_try
2833int _nc_add_to_try(
micky3879b9f5e72025-07-08 18:04:53 -04002834 TRIES **tree,
2835 const char *str,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302836 unsigned code)
2837 { return(*(int *)0); }
2838
2839/* ./tinfo/alloc_ttype.c */
2840
2841#undef _nc_align_termtype
2842void _nc_align_termtype(
micky3879b9f5e72025-07-08 18:04:53 -04002843 TERMTYPE *to,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302844 TERMTYPE *from)
2845 { /* void */ }
2846
2847#undef _nc_copy_termtype
2848void _nc_copy_termtype(
micky3879b9f5e72025-07-08 18:04:53 -04002849 TERMTYPE *dst,
Steve Kondikae271bc2015-11-15 02:50:53 +01002850 const TERMTYPE *src)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302851 { /* void */ }
2852
2853/* ./codes.c */
2854
2855#undef _nc_boolcodes
Steve Kondikae271bc2015-11-15 02:50:53 +01002856const char *const *_nc_boolcodes(void)
2857 { return(*(const char **)0); }
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302858
2859#undef _nc_numcodes
Steve Kondikae271bc2015-11-15 02:50:53 +01002860const char *const *_nc_numcodes(void)
2861 { return(*(const char **)0); }
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302862
2863#undef _nc_strcodes
Steve Kondikae271bc2015-11-15 02:50:53 +01002864const char *const *_nc_strcodes(void)
2865 { return(*(const char **)0); }
2866
2867/* ./comp_captab.c */
2868
2869#undef _nc_get_table
2870const struct name_table_entry *_nc_get_table(
2871 NCURSES_BOOL termcap)
2872 { return(*(const struct name_table_entry **)0); }
2873
2874#undef _nc_get_hash_table
2875const HashValue *_nc_get_hash_table(
2876 NCURSES_BOOL termcap)
2877 { return(*(const HashValue **)0); }
2878
2879#undef _nc_get_alias_table
2880const struct alias *_nc_get_alias_table(
2881 NCURSES_BOOL termcap)
2882 { return(*(const struct alias **)0); }
2883
2884#undef _nc_get_hash_info
2885const HashData *_nc_get_hash_info(
2886 NCURSES_BOOL termcap)
2887 { return(*(const HashData **)0); }
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302888
2889/* ./tinfo/comp_error.c */
2890
2891#undef _nc_suppress_warnings
2892NCURSES_BOOL _nc_suppress_warnings;
2893#undef _nc_curr_line
2894int _nc_curr_line;
2895#undef _nc_curr_col
2896int _nc_curr_col;
2897
2898#undef _nc_get_source
2899const char *_nc_get_source(void)
2900 { return(*(const char **)0); }
2901
2902#undef _nc_set_source
2903void _nc_set_source(
2904 const char *const name)
2905 { /* void */ }
2906
2907#undef _nc_set_type
2908void _nc_set_type(
2909 const char *const name)
2910 { /* void */ }
2911
2912#undef _nc_get_type
2913void _nc_get_type(
2914 char *name)
2915 { /* void */ }
2916
2917#undef _nc_warning
2918void _nc_warning(
micky3879b9f5e72025-07-08 18:04:53 -04002919 const char *const fmt,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302920 ...)
2921 { /* void */ }
2922
2923#undef _nc_err_abort
2924void _nc_err_abort(
micky3879b9f5e72025-07-08 18:04:53 -04002925 const char *const fmt,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302926 ...)
2927 { /* void */ }
2928
2929#undef _nc_syserr_abort
2930void _nc_syserr_abort(
micky3879b9f5e72025-07-08 18:04:53 -04002931 const char *const fmt,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302932 ...)
2933 { /* void */ }
2934
Steve Kondikae271bc2015-11-15 02:50:53 +01002935/* ./tinfo/comp_hash.c */
2936
2937#undef _nc_find_entry
2938struct name_table_entry const *_nc_find_entry(
micky3879b9f5e72025-07-08 18:04:53 -04002939 const char *string,
Steve Kondikae271bc2015-11-15 02:50:53 +01002940 const HashValue *hash_table)
2941 { return(*(struct name_table_entry const **)0); }
2942
2943#undef _nc_find_type_entry
2944struct name_table_entry const *_nc_find_type_entry(
micky3879b9f5e72025-07-08 18:04:53 -04002945 const char *string,
2946 int type,
Steve Kondikae271bc2015-11-15 02:50:53 +01002947 NCURSES_BOOL termcap)
2948 { return(*(struct name_table_entry const **)0); }
2949
micky3879b9f5e72025-07-08 18:04:53 -04002950#undef _nc_find_user_entry
2951struct user_table_entry const *_nc_find_user_entry(
2952 const char *string)
2953 { return(*(struct user_table_entry const **)0); }
2954
2955/* ./comp_userdefs.c */
2956
2957#undef _nc_get_userdefs_table
2958const struct user_table_entry *_nc_get_userdefs_table(void)
2959 { return(*(const struct user_table_entry **)0); }
2960
2961#undef _nc_get_hash_user
2962const HashData *_nc_get_hash_user(void)
2963 { return(*(const HashData **)0); }
2964
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302965/* ./tinfo/db_iterator.c */
2966
2967#undef _nc_tic_dir
2968const char *_nc_tic_dir(
2969 const char *path)
2970 { return(*(const char **)0); }
2971
2972#undef _nc_keep_tic_dir
2973void _nc_keep_tic_dir(
2974 const char *path)
2975 { /* void */ }
2976
2977#undef _nc_last_db
2978void _nc_last_db(void)
2979 { /* void */ }
2980
2981#undef _nc_next_db
2982const char *_nc_next_db(
micky3879b9f5e72025-07-08 18:04:53 -04002983 DBDIRS *state,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302984 int *offset)
2985 { return(*(const char **)0); }
2986
2987#undef _nc_first_db
2988void _nc_first_db(
micky3879b9f5e72025-07-08 18:04:53 -04002989 DBDIRS *state,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302990 int *offset)
2991 { /* void */ }
2992
2993/* ./tinfo/doalloc.c */
2994
2995#undef _nc_doalloc
2996void *_nc_doalloc(
micky3879b9f5e72025-07-08 18:04:53 -04002997 void *oldp,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302998 size_t amount)
2999 { return(*(void **)0); }
3000
3001/* ./tinfo/entries.c */
3002
3003#undef _nc_head
3004ENTRY *_nc_head;
3005#undef _nc_tail
3006ENTRY *_nc_tail;
3007
3008#undef _nc_free_entry
3009void _nc_free_entry(
micky3879b9f5e72025-07-08 18:04:53 -04003010 ENTRY *headp,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303011 TERMTYPE *tterm)
3012 { /* void */ }
3013
3014#undef _nc_free_entries
3015void _nc_free_entries(
3016 ENTRY *headp)
3017 { /* void */ }
3018
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303019#undef _nc_leaks_tinfo
3020void _nc_leaks_tinfo(void)
3021 { /* void */ }
3022
micky3879b9f5e72025-07-08 18:04:53 -04003023#undef exit_terminfo
3024void exit_terminfo(
3025 int code)
3026 { /* void */ }
3027
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303028/* ./fallback.c */
3029
3030#undef _nc_fallback
3031const TERMTYPE *_nc_fallback(
3032 const char *name)
3033 { return(*(const TERMTYPE **)0); }
3034
3035/* ./tinfo/free_ttype.c */
3036
3037#undef _nc_free_termtype
3038void _nc_free_termtype(
3039 TERMTYPE *ptr)
3040 { /* void */ }
3041
micky3879b9f5e72025-07-08 18:04:53 -04003042#undef _nc_free_termtype1
3043void _nc_free_termtype1(
3044 TERMTYPE *ptr)
3045 { /* void */ }
3046
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303047#undef _nc_user_definable
3048NCURSES_BOOL _nc_user_definable;
3049
3050#undef use_extended_names
3051int use_extended_names(
3052 NCURSES_BOOL flag)
3053 { return(*(int *)0); }
3054
3055/* ./tinfo/getenv_num.c */
3056
3057#undef _nc_getenv_num
3058int _nc_getenv_num(
3059 const char *name)
3060 { return(*(int *)0); }
3061
Steve Kondikae271bc2015-11-15 02:50:53 +01003062#undef _nc_setenv_num
3063void _nc_setenv_num(
micky3879b9f5e72025-07-08 18:04:53 -04003064 const char *name,
Steve Kondikae271bc2015-11-15 02:50:53 +01003065 int value)
3066 { /* void */ }
3067
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303068/* ./tinfo/home_terminfo.c */
3069
3070#undef _nc_home_terminfo
3071char *_nc_home_terminfo(void)
3072 { return(*(char **)0); }
3073
3074/* ./tinfo/init_keytry.c */
3075
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303076#undef _nc_init_keytry
3077void _nc_init_keytry(
3078 SCREEN *sp)
3079 { /* void */ }
3080
3081/* ./tinfo/lib_acs.c */
3082
3083#undef _nc_acs_map
3084chtype *_nc_acs_map(void)
3085 { return(*(chtype **)0); }
3086
Steve Kondikae271bc2015-11-15 02:50:53 +01003087#undef _nc_init_acs_sp
3088void _nc_init_acs_sp(
3089 SCREEN *sp)
3090 { /* void */ }
3091
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303092#undef _nc_init_acs
3093void _nc_init_acs(void)
3094 { /* void */ }
3095
3096/* ./tinfo/lib_baudrate.c */
3097
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303098struct speed {
micky3879b9f5e72025-07-08 18:04:53 -04003099 int given_speed;
3100 int actual_speed;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303101};
3102
3103#undef _nc_baudrate
3104int _nc_baudrate(
3105 int OSpeed)
3106 { return(*(int *)0); }
3107
3108#undef _nc_ospeed
3109int _nc_ospeed(
3110 int BaudRate)
3111 { return(*(int *)0); }
3112
Steve Kondikae271bc2015-11-15 02:50:53 +01003113#undef baudrate_sp
3114int baudrate_sp(
3115 SCREEN *sp)
3116 { return(*(int *)0); }
3117
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303118#undef baudrate
3119int baudrate(void)
3120 { return(*(int *)0); }
3121
3122/* ./tinfo/lib_cur_term.c */
3123
Steve Kondikae271bc2015-11-15 02:50:53 +01003124#undef _nc_get_cur_term_sp
3125TERMINAL *_nc_get_cur_term_sp(
3126 SCREEN *sp)
3127 { return(*(TERMINAL **)0); }
3128
3129#undef _nc_get_cur_term
3130TERMINAL *_nc_get_cur_term(void)
3131 { return(*(TERMINAL **)0); }
3132
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303133#undef _nc_cur_term
3134TERMINAL *_nc_cur_term(void)
3135 { return(*(TERMINAL **)0); }
3136
Steve Kondikae271bc2015-11-15 02:50:53 +01003137#undef set_curterm_sp
3138TERMINAL *set_curterm_sp(
micky3879b9f5e72025-07-08 18:04:53 -04003139 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01003140 TERMINAL *termp)
3141 { return(*(TERMINAL **)0); }
3142
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303143#undef set_curterm
3144TERMINAL *set_curterm(
3145 TERMINAL *termp)
3146 { return(*(TERMINAL **)0); }
3147
Steve Kondikae271bc2015-11-15 02:50:53 +01003148#undef del_curterm_sp
3149int del_curterm_sp(
micky3879b9f5e72025-07-08 18:04:53 -04003150 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01003151 TERMINAL *termp)
3152 { return(*(int *)0); }
3153
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303154#undef del_curterm
3155int del_curterm(
3156 TERMINAL *termp)
3157 { return(*(int *)0); }
3158
3159/* ./tinfo/lib_data.c */
3160
3161#undef _nc_stdscr
3162WINDOW *_nc_stdscr(void)
3163 { return(*(WINDOW **)0); }
3164
3165#undef _nc_curscr
3166WINDOW *_nc_curscr(void)
3167 { return(*(WINDOW **)0); }
3168
3169#undef _nc_newscr
3170WINDOW *_nc_newscr(void)
3171 { return(*(WINDOW **)0); }
3172
3173#undef _nc_screen_chain
3174SCREEN *_nc_screen_chain;
3175#undef SP
3176SCREEN *SP;
3177#undef _nc_globals
3178NCURSES_GLOBALS _nc_globals;
3179#undef _nc_prescreen
3180NCURSES_PRESCREEN _nc_prescreen;
3181
Steve Kondikae271bc2015-11-15 02:50:53 +01003182#undef _nc_screen_of
3183SCREEN *_nc_screen_of(
3184 WINDOW *win)
3185 { return(*(SCREEN **)0); }
3186
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303187#undef _nc_init_pthreads
3188void _nc_init_pthreads(void)
3189 { /* void */ }
3190
3191#undef _nc_mutex_init
3192void _nc_mutex_init(
3193 pthread_mutex_t *obj)
3194 { /* void */ }
3195
3196#undef _nc_mutex_lock
3197int _nc_mutex_lock(
3198 pthread_mutex_t *obj)
3199 { return(*(int *)0); }
3200
3201#undef _nc_mutex_trylock
3202int _nc_mutex_trylock(
3203 pthread_mutex_t *obj)
3204 { return(*(int *)0); }
3205
3206#undef _nc_mutex_unlock
3207int _nc_mutex_unlock(
3208 pthread_mutex_t *obj)
3209 { return(*(int *)0); }
3210
3211/* ./tinfo/lib_has_cap.c */
3212
Steve Kondikae271bc2015-11-15 02:50:53 +01003213#undef has_ic_sp
3214NCURSES_BOOL has_ic_sp(
3215 SCREEN *sp)
3216 { return(*(NCURSES_BOOL *)0); }
3217
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303218#undef has_ic
3219NCURSES_BOOL has_ic(void)
3220 { return(*(NCURSES_BOOL *)0); }
3221
Steve Kondikae271bc2015-11-15 02:50:53 +01003222#undef has_il_sp
3223NCURSES_BOOL has_il_sp(
3224 SCREEN *sp)
3225 { return(*(NCURSES_BOOL *)0); }
3226
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303227#undef has_il
3228NCURSES_BOOL has_il(void)
3229 { return(*(NCURSES_BOOL *)0); }
3230
3231/* ./tinfo/lib_kernel.c */
3232
Steve Kondikae271bc2015-11-15 02:50:53 +01003233#undef erasechar_sp
3234char erasechar_sp(
3235 SCREEN *sp)
3236 { return(*(char *)0); }
3237
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303238#undef erasechar
3239char erasechar(void)
3240 { return(*(char *)0); }
3241
Steve Kondikae271bc2015-11-15 02:50:53 +01003242#undef killchar_sp
3243char killchar_sp(
3244 SCREEN *sp)
3245 { return(*(char *)0); }
3246
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303247#undef killchar
3248char killchar(void)
3249 { return(*(char *)0); }
3250
Steve Kondikae271bc2015-11-15 02:50:53 +01003251#undef flushinp_sp
3252int flushinp_sp(
3253 SCREEN *sp)
3254 { return(*(int *)0); }
3255
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303256#undef flushinp
3257int flushinp(void)
3258 { return(*(int *)0); }
3259
3260/* ./lib_keyname.c */
3261
3262struct kn { short offset; int code; };
3263
Steve Kondikae271bc2015-11-15 02:50:53 +01003264#undef keyname_sp
3265const char *keyname_sp(
micky3879b9f5e72025-07-08 18:04:53 -04003266 SCREEN *sp,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303267 int c)
Steve Kondikae271bc2015-11-15 02:50:53 +01003268 { return(*(const char **)0); }
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303269
3270#undef keyname
Steve Kondikae271bc2015-11-15 02:50:53 +01003271const char *keyname(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303272 int c)
Steve Kondikae271bc2015-11-15 02:50:53 +01003273 { return(*(const char **)0); }
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303274
3275/* ./tinfo/lib_longname.c */
3276
Steve Kondikae271bc2015-11-15 02:50:53 +01003277#undef longname_sp
3278char *longname_sp(
3279 SCREEN *sp)
3280 { return(*(char **)0); }
3281
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303282#undef longname
3283char *longname(void)
3284 { return(*(char **)0); }
3285
3286/* ./tinfo/lib_napms.c */
3287
Steve Kondikae271bc2015-11-15 02:50:53 +01003288#undef napms_sp
3289int napms_sp(
micky3879b9f5e72025-07-08 18:04:53 -04003290 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01003291 int ms)
3292 { return(*(int *)0); }
3293
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303294#undef napms
3295int napms(
3296 int ms)
3297 { return(*(int *)0); }
3298
3299/* ./tinfo/lib_options.c */
3300
3301#undef idlok
3302int idlok(
micky3879b9f5e72025-07-08 18:04:53 -04003303 WINDOW *win,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303304 NCURSES_BOOL flag)
3305 { return(*(int *)0); }
3306
3307#undef idcok
3308void idcok(
micky3879b9f5e72025-07-08 18:04:53 -04003309 WINDOW *win,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303310 NCURSES_BOOL flag)
3311 { /* void */ }
3312
Steve Kondikae271bc2015-11-15 02:50:53 +01003313#undef halfdelay_sp
3314int halfdelay_sp(
micky3879b9f5e72025-07-08 18:04:53 -04003315 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01003316 int t)
3317 { return(*(int *)0); }
3318
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303319#undef halfdelay
3320int halfdelay(
3321 int t)
3322 { return(*(int *)0); }
3323
3324#undef nodelay
3325int nodelay(
micky3879b9f5e72025-07-08 18:04:53 -04003326 WINDOW *win,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303327 NCURSES_BOOL flag)
3328 { return(*(int *)0); }
3329
3330#undef notimeout
3331int notimeout(
micky3879b9f5e72025-07-08 18:04:53 -04003332 WINDOW *win,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303333 NCURSES_BOOL f)
3334 { return(*(int *)0); }
3335
3336#undef wtimeout
3337void wtimeout(
micky3879b9f5e72025-07-08 18:04:53 -04003338 WINDOW *win,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303339 int delay)
3340 { /* void */ }
3341
3342#undef keypad
3343int keypad(
micky3879b9f5e72025-07-08 18:04:53 -04003344 WINDOW *win,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303345 NCURSES_BOOL flag)
3346 { return(*(int *)0); }
3347
3348#undef meta
3349int meta(
micky3879b9f5e72025-07-08 18:04:53 -04003350 WINDOW *win,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303351 NCURSES_BOOL flag)
3352 { return(*(int *)0); }
3353
Steve Kondikae271bc2015-11-15 02:50:53 +01003354#undef curs_set_sp
3355int curs_set_sp(
micky3879b9f5e72025-07-08 18:04:53 -04003356 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01003357 int vis)
3358 { return(*(int *)0); }
3359
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303360#undef curs_set
3361int curs_set(
3362 int vis)
3363 { return(*(int *)0); }
3364
Steve Kondikae271bc2015-11-15 02:50:53 +01003365#undef typeahead_sp
3366int typeahead_sp(
micky3879b9f5e72025-07-08 18:04:53 -04003367 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01003368 int fd)
3369 { return(*(int *)0); }
3370
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303371#undef typeahead
3372int typeahead(
3373 int fd)
3374 { return(*(int *)0); }
3375
Steve Kondikae271bc2015-11-15 02:50:53 +01003376#undef has_key_sp
3377int has_key_sp(
micky3879b9f5e72025-07-08 18:04:53 -04003378 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01003379 int keycode)
3380 { return(*(int *)0); }
3381
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303382#undef has_key
3383int has_key(
3384 int keycode)
3385 { return(*(int *)0); }
3386
Steve Kondikae271bc2015-11-15 02:50:53 +01003387#undef _nc_putp_flush_sp
3388int _nc_putp_flush_sp(
micky3879b9f5e72025-07-08 18:04:53 -04003389 SCREEN *sp,
3390 const char *name,
Steve Kondikae271bc2015-11-15 02:50:53 +01003391 const char *value)
3392 { return(*(int *)0); }
3393
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303394#undef _nc_keypad
3395int _nc_keypad(
micky3879b9f5e72025-07-08 18:04:53 -04003396 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01003397 int flag)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303398 { return(*(int *)0); }
3399
3400/* ./tinfo/lib_raw.c */
3401
Steve Kondikae271bc2015-11-15 02:50:53 +01003402#undef raw_sp
3403int raw_sp(
3404 SCREEN *sp)
3405 { return(*(int *)0); }
3406
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303407#undef raw
3408int raw(void)
3409 { return(*(int *)0); }
3410
Steve Kondikae271bc2015-11-15 02:50:53 +01003411#undef cbreak_sp
3412int cbreak_sp(
3413 SCREEN *sp)
3414 { return(*(int *)0); }
3415
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303416#undef cbreak
3417int cbreak(void)
3418 { return(*(int *)0); }
3419
Steve Kondikae271bc2015-11-15 02:50:53 +01003420#undef qiflush_sp
3421void qiflush_sp(
3422 SCREEN *sp)
3423 { /* void */ }
3424
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303425#undef qiflush
3426void qiflush(void)
3427 { /* void */ }
3428
Steve Kondikae271bc2015-11-15 02:50:53 +01003429#undef noraw_sp
3430int noraw_sp(
3431 SCREEN *sp)
3432 { return(*(int *)0); }
3433
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303434#undef noraw
3435int noraw(void)
3436 { return(*(int *)0); }
3437
Steve Kondikae271bc2015-11-15 02:50:53 +01003438#undef nocbreak_sp
3439int nocbreak_sp(
3440 SCREEN *sp)
3441 { return(*(int *)0); }
3442
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303443#undef nocbreak
3444int nocbreak(void)
3445 { return(*(int *)0); }
3446
Steve Kondikae271bc2015-11-15 02:50:53 +01003447#undef noqiflush_sp
3448void noqiflush_sp(
3449 SCREEN *sp)
3450 { /* void */ }
3451
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303452#undef noqiflush
3453void noqiflush(void)
3454 { /* void */ }
3455
Steve Kondikae271bc2015-11-15 02:50:53 +01003456#undef intrflush_sp
3457int intrflush_sp(
micky3879b9f5e72025-07-08 18:04:53 -04003458 SCREEN *sp,
3459 WINDOW *win,
Steve Kondikae271bc2015-11-15 02:50:53 +01003460 NCURSES_BOOL flag)
3461 { return(*(int *)0); }
3462
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303463#undef intrflush
3464int intrflush(
micky3879b9f5e72025-07-08 18:04:53 -04003465 WINDOW *win,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303466 NCURSES_BOOL flag)
3467 { return(*(int *)0); }
3468
micky3879b9f5e72025-07-08 18:04:53 -04003469#undef is_nl_sp
3470int is_nl_sp(
3471 SCREEN *sp)
3472 { return(*(int *)0); }
3473
3474#undef is_raw_sp
3475int is_raw_sp(
3476 SCREEN *sp)
3477 { return(*(int *)0); }
3478
3479#undef is_cbreak_sp
3480int is_cbreak_sp(
3481 SCREEN *sp)
3482 { return(*(int *)0); }
3483
3484#undef is_echo_sp
3485int is_echo_sp(
3486 SCREEN *sp)
3487 { return(*(int *)0); }
3488
3489#undef is_nl
3490int is_nl(void)
3491 { return(*(int *)0); }
3492
3493#undef is_raw
3494int is_raw(void)
3495 { return(*(int *)0); }
3496
3497#undef is_cbreak
3498int is_cbreak(void)
3499 { return(*(int *)0); }
3500
3501#undef is_echo
3502int is_echo(void)
3503 { return(*(int *)0); }
3504
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303505/* ./tinfo/lib_setup.c */
3506
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303507#undef _nc_ttytype
3508char *_nc_ttytype(void)
3509 { return(*(char **)0); }
3510
3511#undef _nc_ptr_Lines
Steve Kondikae271bc2015-11-15 02:50:53 +01003512int *_nc_ptr_Lines(
3513 SCREEN *sp)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303514 { return(*(int **)0); }
3515
3516#undef _nc_LINES
3517int _nc_LINES(void)
3518 { return(*(int *)0); }
3519
3520#undef _nc_ptr_Cols
Steve Kondikae271bc2015-11-15 02:50:53 +01003521int *_nc_ptr_Cols(
3522 SCREEN *sp)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303523 { return(*(int **)0); }
3524
3525#undef _nc_COLS
3526int _nc_COLS(void)
3527 { return(*(int *)0); }
3528
Steve Kondikae271bc2015-11-15 02:50:53 +01003529#undef _nc_ptr_Tabsize
3530int *_nc_ptr_Tabsize(
3531 SCREEN *sp)
3532 { return(*(int **)0); }
3533
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303534#undef _nc_TABSIZE
3535int _nc_TABSIZE(void)
3536 { return(*(int *)0); }
3537
Steve Kondikae271bc2015-11-15 02:50:53 +01003538#undef set_tabsize_sp
3539int set_tabsize_sp(
micky3879b9f5e72025-07-08 18:04:53 -04003540 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01003541 int value)
3542 { return(*(int *)0); }
3543
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303544#undef set_tabsize
3545int set_tabsize(
3546 int value)
3547 { return(*(int *)0); }
3548
3549#undef _nc_handle_sigwinch
3550int _nc_handle_sigwinch(
3551 SCREEN *sp)
3552 { return(*(int *)0); }
3553
Steve Kondikae271bc2015-11-15 02:50:53 +01003554#undef use_env_sp
3555void use_env_sp(
micky3879b9f5e72025-07-08 18:04:53 -04003556 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01003557 NCURSES_BOOL f)
3558 { /* void */ }
3559
3560#undef use_tioctl_sp
3561void use_tioctl_sp(
micky3879b9f5e72025-07-08 18:04:53 -04003562 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01003563 NCURSES_BOOL f)
3564 { /* void */ }
3565
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303566#undef use_env
3567void use_env(
3568 NCURSES_BOOL f)
3569 { /* void */ }
3570
Steve Kondikae271bc2015-11-15 02:50:53 +01003571#undef use_tioctl
3572void use_tioctl(
3573 NCURSES_BOOL f)
3574 { /* void */ }
3575
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303576#undef _nc_get_screensize
3577void _nc_get_screensize(
micky3879b9f5e72025-07-08 18:04:53 -04003578 SCREEN *sp,
3579 int *linep,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303580 int *colp)
3581 { /* void */ }
3582
3583#undef _nc_update_screensize
3584void _nc_update_screensize(
3585 SCREEN *sp)
3586 { /* void */ }
3587
Steve Kondikae271bc2015-11-15 02:50:53 +01003588#undef _nc_setup_tinfo
3589int _nc_setup_tinfo(
micky3879b9f5e72025-07-08 18:04:53 -04003590 const char *const tn,
Steve Kondikae271bc2015-11-15 02:50:53 +01003591 TERMTYPE *const tp)
3592 { return(*(int *)0); }
3593
3594#undef _nc_tinfo_cmdch
3595void _nc_tinfo_cmdch(
micky3879b9f5e72025-07-08 18:04:53 -04003596 TERMINAL *termp,
Steve Kondikae271bc2015-11-15 02:50:53 +01003597 int proto)
3598 { /* void */ }
3599
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303600#undef _nc_get_locale
3601char *_nc_get_locale(void)
3602 { return(*(char **)0); }
3603
3604#undef _nc_unicode_locale
3605int _nc_unicode_locale(void)
3606 { return(*(int *)0); }
3607
3608#undef _nc_locale_breaks_acs
3609int _nc_locale_breaks_acs(
3610 TERMINAL *termp)
3611 { return(*(int *)0); }
3612
3613#undef _nc_setupterm
3614int _nc_setupterm(
micky3879b9f5e72025-07-08 18:04:53 -04003615 const char *tname,
3616 int Filedes,
3617 int *errret,
Steve Kondikae271bc2015-11-15 02:50:53 +01003618 int reuse)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303619 { return(*(int *)0); }
3620
micky3879b9f5e72025-07-08 18:04:53 -04003621#undef _nc_find_prescr
3622SCREEN *_nc_find_prescr(void)
3623 { return(*(SCREEN **)0); }
3624
3625#undef _nc_forget_prescr
3626void _nc_forget_prescr(void)
3627 { /* void */ }
3628
Steve Kondikae271bc2015-11-15 02:50:53 +01003629#undef new_prescr
3630SCREEN *new_prescr(void)
3631 { return(*(SCREEN **)0); }
3632
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303633#undef setupterm
3634int setupterm(
micky3879b9f5e72025-07-08 18:04:53 -04003635 const char *tname,
3636 int Filedes,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303637 int *errret)
3638 { return(*(int *)0); }
3639
3640/* ./tinfo/lib_termcap.c */
3641
3642#undef UP
3643char *UP;
3644#undef BC
3645char *BC;
3646
Steve Kondikae271bc2015-11-15 02:50:53 +01003647#undef tgetent_sp
3648int tgetent_sp(
micky3879b9f5e72025-07-08 18:04:53 -04003649 SCREEN *sp,
3650 char *bufp,
Steve Kondikae271bc2015-11-15 02:50:53 +01003651 const char *name)
3652 { return(*(int *)0); }
3653
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303654#undef tgetent
3655int tgetent(
micky3879b9f5e72025-07-08 18:04:53 -04003656 char *bufp,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303657 const char *name)
3658 { return(*(int *)0); }
3659
Steve Kondikae271bc2015-11-15 02:50:53 +01003660#undef tgetflag_sp
3661int tgetflag_sp(
micky3879b9f5e72025-07-08 18:04:53 -04003662 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01003663 const char *id)
3664 { return(*(int *)0); }
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303665
3666#undef tgetflag
3667int tgetflag(
Steve Kondikae271bc2015-11-15 02:50:53 +01003668 const char *id)
3669 { return(*(int *)0); }
3670
3671#undef tgetnum_sp
3672int tgetnum_sp(
micky3879b9f5e72025-07-08 18:04:53 -04003673 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01003674 const char *id)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303675 { return(*(int *)0); }
3676
3677#undef tgetnum
3678int tgetnum(
Steve Kondikae271bc2015-11-15 02:50:53 +01003679 const char *id)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303680 { return(*(int *)0); }
3681
Steve Kondikae271bc2015-11-15 02:50:53 +01003682#undef tgetstr_sp
3683char *tgetstr_sp(
micky3879b9f5e72025-07-08 18:04:53 -04003684 SCREEN *sp,
3685 const char *id,
Steve Kondikae271bc2015-11-15 02:50:53 +01003686 char **area)
3687 { return(*(char **)0); }
3688
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303689#undef tgetstr
3690char *tgetstr(
micky3879b9f5e72025-07-08 18:04:53 -04003691 const char *id,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303692 char **area)
3693 { return(*(char **)0); }
3694
3695/* ./tinfo/lib_termname.c */
3696
Steve Kondikae271bc2015-11-15 02:50:53 +01003697#undef termname_sp
3698char *termname_sp(
3699 SCREEN *sp)
3700 { return(*(char **)0); }
3701
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303702#undef termname
3703char *termname(void)
3704 { return(*(char **)0); }
3705
3706/* ./tinfo/lib_tgoto.c */
3707
3708#undef tgoto
3709char *tgoto(
micky3879b9f5e72025-07-08 18:04:53 -04003710 const char *string,
3711 int x,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303712 int y)
3713 { return(*(char **)0); }
3714
3715/* ./tinfo/lib_ti.c */
3716
Steve Kondikae271bc2015-11-15 02:50:53 +01003717#undef tigetflag_sp
3718int tigetflag_sp(
micky3879b9f5e72025-07-08 18:04:53 -04003719 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01003720 const char *str)
3721 { return(*(int *)0); }
3722
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303723#undef tigetflag
3724int tigetflag(
Steve Kondikae271bc2015-11-15 02:50:53 +01003725 const char *str)
3726 { return(*(int *)0); }
3727
3728#undef tigetnum_sp
3729int tigetnum_sp(
micky3879b9f5e72025-07-08 18:04:53 -04003730 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01003731 const char *str)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303732 { return(*(int *)0); }
3733
3734#undef tigetnum
3735int tigetnum(
Steve Kondikae271bc2015-11-15 02:50:53 +01003736 const char *str)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303737 { return(*(int *)0); }
3738
Steve Kondikae271bc2015-11-15 02:50:53 +01003739#undef tigetstr_sp
3740char *tigetstr_sp(
micky3879b9f5e72025-07-08 18:04:53 -04003741 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01003742 const char *str)
3743 { return(*(char **)0); }
3744
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303745#undef tigetstr
3746char *tigetstr(
Steve Kondikae271bc2015-11-15 02:50:53 +01003747 const char *str)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303748 { return(*(char **)0); }
3749
3750/* ./tinfo/lib_tparm.c */
3751
3752#undef _nc_tparm_err
3753int _nc_tparm_err;
3754
micky3879b9f5e72025-07-08 18:04:53 -04003755#undef _nc_free_tparm
3756void _nc_free_tparm(
3757 TERMINAL *termp)
3758 { /* void */ }
3759
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303760#undef _nc_tparm_analyze
3761int _nc_tparm_analyze(
micky3879b9f5e72025-07-08 18:04:53 -04003762 TERMINAL *term,
3763 const char *string,
3764 char **p_is_s,
Steve Kondikae271bc2015-11-15 02:50:53 +01003765 int *_nc_popcount)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303766 { return(*(int *)0); }
3767
3768#undef tparm
3769char *tparm(
micky3879b9f5e72025-07-08 18:04:53 -04003770 const char *string,
Steve Kondikae271bc2015-11-15 02:50:53 +01003771 ...)
3772 { return(*(char **)0); }
3773
3774#undef tiparm
3775char *tiparm(
micky3879b9f5e72025-07-08 18:04:53 -04003776 const char *string,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303777 ...)
3778 { return(*(char **)0); }
3779
micky3879b9f5e72025-07-08 18:04:53 -04003780#undef tiparm_s
3781char *tiparm_s(
3782 int num_expected,
3783 int tparm_type,
3784 const char *string,
3785 ...)
3786 { return(*(char **)0); }
3787
3788#undef tiscan_s
3789int tiscan_s(
3790 int *num_expected,
3791 int *tparm_type,
3792 const char *string)
3793 { return(*(int *)0); }
3794
3795#undef _nc_tiparm
3796char *_nc_tiparm(
3797 int expected,
3798 const char *string,
3799 ...)
3800 { return(*(char **)0); }
3801
3802#undef _nc_reset_tparm
3803void _nc_reset_tparm(
3804 TERMINAL *term)
3805 { /* void */ }
3806
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303807/* ./tinfo/lib_tputs.c */
3808
3809#undef PC
3810char PC;
3811#undef ospeed
Steve Kondikae271bc2015-11-15 02:50:53 +01003812short ospeed;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303813#undef _nc_nulls_sent
3814int _nc_nulls_sent;
3815
3816#undef _nc_set_no_padding
3817void _nc_set_no_padding(
3818 SCREEN *sp)
3819 { /* void */ }
3820
Steve Kondikae271bc2015-11-15 02:50:53 +01003821#undef delay_output_sp
3822int delay_output_sp(
micky3879b9f5e72025-07-08 18:04:53 -04003823 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01003824 int ms)
3825 { return(*(int *)0); }
3826
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303827#undef delay_output
3828int delay_output(
3829 int ms)
3830 { return(*(int *)0); }
3831
Steve Kondikae271bc2015-11-15 02:50:53 +01003832#undef _nc_flush_sp
3833void _nc_flush_sp(
3834 SCREEN *sp)
3835 { /* void */ }
3836
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303837#undef _nc_flush
3838void _nc_flush(void)
3839 { /* void */ }
3840
Steve Kondikae271bc2015-11-15 02:50:53 +01003841#undef _nc_outch_sp
3842int _nc_outch_sp(
micky3879b9f5e72025-07-08 18:04:53 -04003843 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01003844 int ch)
3845 { return(*(int *)0); }
3846
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303847#undef _nc_outch
3848int _nc_outch(
3849 int ch)
3850 { return(*(int *)0); }
3851
Steve Kondikae271bc2015-11-15 02:50:53 +01003852#undef _nc_putchar_sp
3853int _nc_putchar_sp(
micky3879b9f5e72025-07-08 18:04:53 -04003854 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01003855 int ch)
3856 { return(*(int *)0); }
3857
3858#undef _nc_putchar
3859int _nc_putchar(
3860 int ch)
3861 { return(*(int *)0); }
3862
3863#undef putp_sp
3864int putp_sp(
micky3879b9f5e72025-07-08 18:04:53 -04003865 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01003866 const char *string)
3867 { return(*(int *)0); }
3868
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303869#undef putp
3870int putp(
3871 const char *string)
3872 { return(*(int *)0); }
3873
Steve Kondikae271bc2015-11-15 02:50:53 +01003874#undef _nc_putp_sp
3875int _nc_putp_sp(
micky3879b9f5e72025-07-08 18:04:53 -04003876 SCREEN *sp,
3877 const char *name,
Steve Kondikae271bc2015-11-15 02:50:53 +01003878 const char *string)
3879 { return(*(int *)0); }
3880
3881#undef _nc_putp
3882int _nc_putp(
micky3879b9f5e72025-07-08 18:04:53 -04003883 const char *name,
Steve Kondikae271bc2015-11-15 02:50:53 +01003884 const char *string)
3885 { return(*(int *)0); }
3886
3887#undef tputs_sp
3888int tputs_sp(
micky3879b9f5e72025-07-08 18:04:53 -04003889 SCREEN *sp,
3890 const char *string,
3891 int affcnt,
Steve Kondikae271bc2015-11-15 02:50:53 +01003892 NCURSES_OUTC_sp outc)
3893 { return(*(int *)0); }
3894
3895#undef _nc_outc_wrapper
3896int _nc_outc_wrapper(
micky3879b9f5e72025-07-08 18:04:53 -04003897 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01003898 int c)
3899 { return(*(int *)0); }
3900
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303901#undef tputs
3902int tputs(
micky3879b9f5e72025-07-08 18:04:53 -04003903 const char *string,
3904 int affcnt,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303905 int (*outc)(
3906 int p1))
3907 { return(*(int *)0); }
3908
3909/* ./trace/lib_trace.c */
3910
3911#undef _nc_tracing
3912unsigned _nc_tracing;
3913
3914#undef _nc__nc_tputs_trace
3915const char *_nc__nc_tputs_trace(void)
3916 { return(*(const char **)0); }
3917
3918#undef _nc__nc_outchars
3919long _nc__nc_outchars(void)
3920 { return(*(long *)0); }
3921
3922#undef _nc_set_tputs_trace
3923void _nc_set_tputs_trace(
3924 const char *s)
3925 { /* void */ }
3926
3927#undef _nc_count_outchars
3928void _nc_count_outchars(
3929 long increment)
3930 { /* void */ }
3931
micky3879b9f5e72025-07-08 18:04:53 -04003932#undef curses_trace
3933unsigned curses_trace(
3934 unsigned tracelevel)
3935 { return(*(unsigned *)0); }
3936
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303937#undef trace
3938void trace(
3939 const unsigned int tracelevel)
3940 { /* void */ }
3941
3942#undef _tracef
3943void _tracef(
micky3879b9f5e72025-07-08 18:04:53 -04003944 const char *fmt,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303945 ...)
3946 { /* void */ }
3947
3948#undef _nc_retrace_bool
3949NCURSES_BOOL _nc_retrace_bool(
Steve Kondikae271bc2015-11-15 02:50:53 +01003950 int code)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303951 { return(*(NCURSES_BOOL *)0); }
3952
Steve Kondikae271bc2015-11-15 02:50:53 +01003953#undef _nc_retrace_char
3954char _nc_retrace_char(
3955 int code)
3956 { return(*(char *)0); }
3957
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303958#undef _nc_retrace_int
3959int _nc_retrace_int(
3960 int code)
3961 { return(*(int *)0); }
3962
3963#undef _nc_retrace_unsigned
3964unsigned _nc_retrace_unsigned(
3965 unsigned code)
3966 { return(*(unsigned *)0); }
3967
3968#undef _nc_retrace_ptr
3969char *_nc_retrace_ptr(
3970 char *code)
3971 { return(*(char **)0); }
3972
3973#undef _nc_retrace_cptr
3974const char *_nc_retrace_cptr(
3975 const char *code)
3976 { return(*(const char **)0); }
3977
3978#undef _nc_retrace_cvoid_ptr
Steve Kondikae271bc2015-11-15 02:50:53 +01003979const void *_nc_retrace_cvoid_ptr(
3980 const void *code)
3981 { return(*(const void **)0); }
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303982
3983#undef _nc_retrace_void_ptr
3984void *_nc_retrace_void_ptr(
3985 void *code)
3986 { return(*(void **)0); }
3987
3988#undef _nc_retrace_sp
3989SCREEN *_nc_retrace_sp(
3990 SCREEN *code)
3991 { return(*(SCREEN **)0); }
3992
3993#undef _nc_retrace_win
3994WINDOW *_nc_retrace_win(
3995 WINDOW *code)
3996 { return(*(WINDOW **)0); }
3997
micky3879b9f5e72025-07-08 18:04:53 -04003998#undef _nc_fmt_funcptr
3999char *_nc_fmt_funcptr(
4000 char *target,
4001 const char *source,
4002 size_t size)
4003 { return(*(char **)0); }
4004
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304005#undef _nc_use_tracef
4006int _nc_use_tracef(
4007 unsigned mask)
4008 { return(*(int *)0); }
4009
4010#undef _nc_locked_tracef
4011void _nc_locked_tracef(
micky3879b9f5e72025-07-08 18:04:53 -04004012 const char *fmt,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304013 ...)
4014 { /* void */ }
4015
4016/* ./trace/lib_traceatr.c */
4017
4018#undef _traceattr2
4019char *_traceattr2(
micky3879b9f5e72025-07-08 18:04:53 -04004020 int bufnum,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304021 chtype newmode)
4022 { return(*(char **)0); }
4023
4024#undef _traceattr
4025char *_traceattr(
4026 attr_t newmode)
4027 { return(*(char **)0); }
4028
Steve Kondikae271bc2015-11-15 02:50:53 +01004029#undef _nc_retrace_int_attr_t
4030int _nc_retrace_int_attr_t(
4031 attr_t code)
4032 { return(*(int *)0); }
4033
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304034#undef _nc_retrace_attr_t
4035attr_t _nc_retrace_attr_t(
4036 attr_t code)
4037 { return(*(attr_t *)0); }
4038
4039#undef _nc_altcharset_name
4040const char *_nc_altcharset_name(
micky3879b9f5e72025-07-08 18:04:53 -04004041 attr_t attr,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304042 chtype ch)
4043 { return(*(const char **)0); }
4044
4045#undef _tracechtype2
4046char *_tracechtype2(
micky3879b9f5e72025-07-08 18:04:53 -04004047 int bufnum,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304048 chtype ch)
4049 { return(*(char **)0); }
4050
4051#undef _tracechtype
4052char *_tracechtype(
4053 chtype ch)
4054 { return(*(char **)0); }
4055
4056#undef _nc_retrace_chtype
4057chtype _nc_retrace_chtype(
4058 chtype code)
4059 { return(*(chtype *)0); }
4060
4061/* ./trace/lib_tracebits.c */
4062
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304063#undef _nc_trace_ttymode
4064char *_nc_trace_ttymode(
micky3879b9f5e72025-07-08 18:04:53 -04004065 const struct termios *tty)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304066 { return(*(char **)0); }
4067
4068#undef _nc_tracebits
4069char *_nc_tracebits(void)
4070 { return(*(char **)0); }
4071
4072/* ./trace/lib_tracechr.c */
4073
4074#undef _nc_tracechar
4075char *_nc_tracechar(
micky3879b9f5e72025-07-08 18:04:53 -04004076 SCREEN *sp,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304077 int ch)
4078 { return(*(char **)0); }
4079
4080#undef _tracechar
4081char *_tracechar(
4082 int ch)
4083 { return(*(char **)0); }
4084
4085/* ./tinfo/lib_ttyflags.c */
4086
Steve Kondikae271bc2015-11-15 02:50:53 +01004087#undef _nc_get_tty_mode_sp
4088int _nc_get_tty_mode_sp(
micky3879b9f5e72025-07-08 18:04:53 -04004089 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01004090 struct termios *buf)
4091 { return(*(int *)0); }
4092
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304093#undef _nc_get_tty_mode
4094int _nc_get_tty_mode(
4095 struct termios *buf)
4096 { return(*(int *)0); }
4097
Steve Kondikae271bc2015-11-15 02:50:53 +01004098#undef _nc_set_tty_mode_sp
4099int _nc_set_tty_mode_sp(
micky3879b9f5e72025-07-08 18:04:53 -04004100 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01004101 struct termios *buf)
4102 { return(*(int *)0); }
4103
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304104#undef _nc_set_tty_mode
4105int _nc_set_tty_mode(
4106 struct termios *buf)
4107 { return(*(int *)0); }
4108
Steve Kondikae271bc2015-11-15 02:50:53 +01004109#undef def_shell_mode_sp
4110int def_shell_mode_sp(
4111 SCREEN *sp)
4112 { return(*(int *)0); }
4113
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304114#undef def_shell_mode
4115int def_shell_mode(void)
4116 { return(*(int *)0); }
4117
Steve Kondikae271bc2015-11-15 02:50:53 +01004118#undef def_prog_mode_sp
4119int def_prog_mode_sp(
4120 SCREEN *sp)
4121 { return(*(int *)0); }
4122
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304123#undef def_prog_mode
4124int def_prog_mode(void)
4125 { return(*(int *)0); }
4126
Steve Kondikae271bc2015-11-15 02:50:53 +01004127#undef reset_prog_mode_sp
4128int reset_prog_mode_sp(
4129 SCREEN *sp)
4130 { return(*(int *)0); }
4131
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304132#undef reset_prog_mode
4133int reset_prog_mode(void)
4134 { return(*(int *)0); }
4135
Steve Kondikae271bc2015-11-15 02:50:53 +01004136#undef reset_shell_mode_sp
4137int reset_shell_mode_sp(
4138 SCREEN *sp)
4139 { return(*(int *)0); }
4140
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304141#undef reset_shell_mode
4142int reset_shell_mode(void)
4143 { return(*(int *)0); }
4144
Steve Kondikae271bc2015-11-15 02:50:53 +01004145#undef savetty_sp
4146int savetty_sp(
4147 SCREEN *sp)
4148 { return(*(int *)0); }
4149
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304150#undef savetty
4151int savetty(void)
4152 { return(*(int *)0); }
4153
Steve Kondikae271bc2015-11-15 02:50:53 +01004154#undef resetty_sp
4155int resetty_sp(
4156 SCREEN *sp)
4157 { return(*(int *)0); }
4158
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304159#undef resetty
4160int resetty(void)
4161 { return(*(int *)0); }
4162
4163/* ./tty/lib_twait.c */
4164
4165#undef _nc_timed_wait
4166int _nc_timed_wait(
micky3879b9f5e72025-07-08 18:04:53 -04004167 SCREEN *sp,
4168 int mode,
4169 int milliseconds,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304170 int *timeleft)
4171 { return(*(int *)0); }
4172
4173/* ./tinfo/name_match.c */
4174
4175#undef _nc_first_name
4176char *_nc_first_name(
4177 const char *const sp)
4178 { return(*(char **)0); }
4179
4180#undef _nc_name_match
4181int _nc_name_match(
micky3879b9f5e72025-07-08 18:04:53 -04004182 const char *const namelst,
4183 const char *const name,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304184 const char *const delim)
4185 { return(*(int *)0); }
4186
4187/* ./names.c */
4188
4189#undef _nc_boolnames
Steve Kondikae271bc2015-11-15 02:50:53 +01004190const char *const *_nc_boolnames(void)
4191 { return(*(const char **)0); }
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304192
4193#undef _nc_boolfnames
Steve Kondikae271bc2015-11-15 02:50:53 +01004194const char *const *_nc_boolfnames(void)
4195 { return(*(const char **)0); }
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304196
4197#undef _nc_numnames
Steve Kondikae271bc2015-11-15 02:50:53 +01004198const char *const *_nc_numnames(void)
4199 { return(*(const char **)0); }
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304200
4201#undef _nc_numfnames
Steve Kondikae271bc2015-11-15 02:50:53 +01004202const char *const *_nc_numfnames(void)
4203 { return(*(const char **)0); }
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304204
4205#undef _nc_strnames
Steve Kondikae271bc2015-11-15 02:50:53 +01004206const char *const *_nc_strnames(void)
4207 { return(*(const char **)0); }
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304208
4209#undef _nc_strfnames
Steve Kondikae271bc2015-11-15 02:50:53 +01004210const char *const *_nc_strfnames(void)
4211 { return(*(const char **)0); }
4212
4213/* ./tinfo/obsolete.c */
4214
4215#undef _nc_set_buffer_sp
4216void _nc_set_buffer_sp(
micky3879b9f5e72025-07-08 18:04:53 -04004217 SCREEN *sp,
4218 FILE *ofp,
Steve Kondikae271bc2015-11-15 02:50:53 +01004219 int buffered)
4220 { /* void */ }
4221
4222#undef _nc_set_buffer
4223void _nc_set_buffer(
micky3879b9f5e72025-07-08 18:04:53 -04004224 FILE *ofp,
Steve Kondikae271bc2015-11-15 02:50:53 +01004225 int buffered)
4226 { /* void */ }
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304227
4228/* ./tinfo/read_entry.c */
4229
Steve Kondikae271bc2015-11-15 02:50:53 +01004230#undef _nc_init_termtype
4231void _nc_init_termtype(
4232 TERMTYPE *const tp)
4233 { /* void */ }
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304234
4235#undef _nc_read_termtype
4236int _nc_read_termtype(
micky3879b9f5e72025-07-08 18:04:53 -04004237 TERMTYPE *ptr,
4238 char *buffer,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304239 int limit)
4240 { return(*(int *)0); }
4241
4242#undef _nc_read_file_entry
4243int _nc_read_file_entry(
micky3879b9f5e72025-07-08 18:04:53 -04004244 const char *const filename,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304245 TERMTYPE *ptr)
4246 { return(*(int *)0); }
4247
4248#undef _nc_read_entry
4249int _nc_read_entry(
micky3879b9f5e72025-07-08 18:04:53 -04004250 const char *const name,
4251 char *const filename,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304252 TERMTYPE *const tp)
4253 { return(*(int *)0); }
4254
4255/* ./tinfo/read_termcap.c */
4256
micky3879b9f5e72025-07-08 18:04:53 -04004257#undef _nc_read_termcap_entry
4258int _nc_read_termcap_entry(
4259 const char *const tn,
4260 TERMTYPE *const tp)
4261 { return(*(int *)0); }
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304262
4263/* ./tinfo/strings.c */
4264
4265#undef _nc_str_init
4266string_desc *_nc_str_init(
micky3879b9f5e72025-07-08 18:04:53 -04004267 string_desc *dst,
4268 char *src,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304269 size_t len)
4270 { return(*(string_desc **)0); }
4271
4272#undef _nc_str_null
4273string_desc *_nc_str_null(
micky3879b9f5e72025-07-08 18:04:53 -04004274 string_desc *dst,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304275 size_t len)
4276 { return(*(string_desc **)0); }
4277
4278#undef _nc_str_copy
4279string_desc *_nc_str_copy(
micky3879b9f5e72025-07-08 18:04:53 -04004280 string_desc *dst,
4281 const string_desc *const src)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304282 { return(*(string_desc **)0); }
4283
4284#undef _nc_safe_strcat
4285NCURSES_BOOL _nc_safe_strcat(
micky3879b9f5e72025-07-08 18:04:53 -04004286 string_desc *dst,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304287 const char *src)
4288 { return(*(NCURSES_BOOL *)0); }
4289
4290#undef _nc_safe_strcpy
4291NCURSES_BOOL _nc_safe_strcpy(
micky3879b9f5e72025-07-08 18:04:53 -04004292 string_desc *dst,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304293 const char *src)
4294 { return(*(NCURSES_BOOL *)0); }
4295
4296/* ./trace/trace_buf.c */
4297
4298#undef _nc_trace_buf
4299char *_nc_trace_buf(
micky3879b9f5e72025-07-08 18:04:53 -04004300 int bufnum,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304301 size_t want)
4302 { return(*(char **)0); }
4303
4304#undef _nc_trace_bufcat
4305char *_nc_trace_bufcat(
micky3879b9f5e72025-07-08 18:04:53 -04004306 int bufnum,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304307 const char *value)
4308 { return(*(char **)0); }
4309
4310/* ./trace/trace_tries.c */
4311
4312#undef _nc_trace_tries
4313void _nc_trace_tries(
4314 TRIES *tree)
4315 { /* void */ }
4316
4317/* ./base/tries.c */
4318
4319#undef _nc_expand_try
4320char *_nc_expand_try(
micky3879b9f5e72025-07-08 18:04:53 -04004321 TRIES *tree,
4322 unsigned code,
4323 int *count,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304324 size_t len)
4325 { return(*(char **)0); }
4326
4327#undef _nc_remove_key
4328int _nc_remove_key(
micky3879b9f5e72025-07-08 18:04:53 -04004329 TRIES **tree,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304330 unsigned code)
4331 { return(*(int *)0); }
4332
4333#undef _nc_remove_string
4334int _nc_remove_string(
micky3879b9f5e72025-07-08 18:04:53 -04004335 TRIES **tree,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304336 const char *string)
4337 { return(*(int *)0); }
4338
4339/* ./tinfo/trim_sgr0.c */
4340
4341#undef _nc_trim_sgr0
4342char *_nc_trim_sgr0(
4343 TERMTYPE *tp)
4344 { return(*(char **)0); }
4345
4346/* ./unctrl.c */
4347
Steve Kondikae271bc2015-11-15 02:50:53 +01004348#undef unctrl_sp
4349const char *unctrl_sp(
micky3879b9f5e72025-07-08 18:04:53 -04004350 SCREEN *sp,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304351 chtype ch)
Steve Kondikae271bc2015-11-15 02:50:53 +01004352 { return(*(const char **)0); }
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304353
4354#undef unctrl
Steve Kondikae271bc2015-11-15 02:50:53 +01004355const char *unctrl(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304356 chtype ch)
Steve Kondikae271bc2015-11-15 02:50:53 +01004357 { return(*(const char **)0); }
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304358
4359/* ./trace/visbuf.c */
4360
4361#undef _nc_visbuf2
4362const char *_nc_visbuf2(
micky3879b9f5e72025-07-08 18:04:53 -04004363 int bufnum,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304364 const char *buf)
4365 { return(*(const char **)0); }
4366
4367#undef _nc_visbuf
4368const char *_nc_visbuf(
4369 const char *buf)
4370 { return(*(const char **)0); }
4371
4372#undef _nc_visbufn
4373const char *_nc_visbufn(
micky3879b9f5e72025-07-08 18:04:53 -04004374 const char *buf,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304375 int len)
4376 { return(*(const char **)0); }
4377
4378#undef _nc_viscbuf2
4379const char *_nc_viscbuf2(
micky3879b9f5e72025-07-08 18:04:53 -04004380 int bufnum,
4381 const chtype *buf,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304382 int len)
4383 { return(*(const char **)0); }
4384
4385#undef _nc_viscbuf
4386const char *_nc_viscbuf(
micky3879b9f5e72025-07-08 18:04:53 -04004387 const chtype *buf,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304388 int len)
4389 { return(*(const char **)0); }
4390
4391/* ./tinfo/alloc_entry.c */
4392
4393#undef _nc_init_entry
4394void _nc_init_entry(
micky3879b9f5e72025-07-08 18:04:53 -04004395 ENTRY *const tp)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304396 { /* void */ }
4397
4398#undef _nc_copy_entry
4399ENTRY *_nc_copy_entry(
4400 ENTRY *oldp)
4401 { return(*(ENTRY **)0); }
4402
4403#undef _nc_save_str
4404char *_nc_save_str(
micky3879b9f5e72025-07-08 18:04:53 -04004405 const char *string)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304406 { return(*(char **)0); }
4407
4408#undef _nc_wrap_entry
4409void _nc_wrap_entry(
micky3879b9f5e72025-07-08 18:04:53 -04004410 ENTRY *const ep,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304411 NCURSES_BOOL copy_strings)
4412 { /* void */ }
4413
4414#undef _nc_merge_entry
4415void _nc_merge_entry(
micky3879b9f5e72025-07-08 18:04:53 -04004416 ENTRY *const target,
4417 ENTRY *const source)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304418 { /* void */ }
4419
4420/* ./tinfo/captoinfo.c */
4421
4422#undef _nc_captoinfo
4423char *_nc_captoinfo(
micky3879b9f5e72025-07-08 18:04:53 -04004424 const char *cap,
4425 const char *s,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304426 int const parameterized)
4427 { return(*(char **)0); }
4428
4429#undef _nc_infotocap
4430char *_nc_infotocap(
micky3879b9f5e72025-07-08 18:04:53 -04004431 const char *cap,
4432 const char *str,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304433 int const parameterized)
4434 { return(*(char **)0); }
4435
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304436/* ./tinfo/comp_expand.c */
4437
4438#undef _nc_tic_expand
4439char *_nc_tic_expand(
micky3879b9f5e72025-07-08 18:04:53 -04004440 const char *srcp,
4441 NCURSES_BOOL tic_format,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304442 int numbers)
4443 { return(*(char **)0); }
4444
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304445/* ./tinfo/comp_parse.c */
4446
4447#undef _nc_check_termtype2
4448void (*_nc_check_termtype2)(
micky3879b9f5e72025-07-08 18:04:53 -04004449 TERMTYPE *p1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304450 NCURSES_BOOL p2);
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304451
4452#undef _nc_entry_match
4453NCURSES_BOOL _nc_entry_match(
micky3879b9f5e72025-07-08 18:04:53 -04004454 char *n1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304455 char *n2)
4456 { return(*(NCURSES_BOOL *)0); }
4457
4458#undef _nc_read_entry_source
4459void _nc_read_entry_source(
micky3879b9f5e72025-07-08 18:04:53 -04004460 FILE *fp,
4461 char *buf,
4462 int literal,
4463 NCURSES_BOOL silent,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304464 NCURSES_BOOL (*hook)(
4465 ENTRY *p1))
4466 { /* void */ }
4467
4468#undef _nc_resolve_uses2
4469int _nc_resolve_uses2(
micky3879b9f5e72025-07-08 18:04:53 -04004470 NCURSES_BOOL fullresolve,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304471 NCURSES_BOOL literal)
4472 { return(*(int *)0); }
4473
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304474/* ./tinfo/comp_scan.c */
4475
4476#undef _nc_syntax
4477int _nc_syntax;
Steve Kondikae271bc2015-11-15 02:50:53 +01004478#undef _nc_strict_bsd
4479int _nc_strict_bsd;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304480#undef _nc_curr_file_pos
4481long _nc_curr_file_pos;
4482#undef _nc_comment_start
4483long _nc_comment_start;
4484#undef _nc_comment_end
4485long _nc_comment_end;
4486#undef _nc_start_line
4487long _nc_start_line;
4488#undef _nc_curr_token
4489struct token _nc_curr_token;
4490#undef _nc_disable_period
4491NCURSES_BOOL _nc_disable_period;
4492
4493#undef _nc_reset_input
4494void _nc_reset_input(
micky3879b9f5e72025-07-08 18:04:53 -04004495 FILE *fp,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304496 char *buf)
4497 { /* void */ }
4498
4499#undef _nc_get_token
4500int _nc_get_token(
4501 NCURSES_BOOL silent)
4502 { return(*(int *)0); }
4503
4504#undef _nc_trans_string
4505int _nc_trans_string(
micky3879b9f5e72025-07-08 18:04:53 -04004506 char *ptr,
4507 const char *const last)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304508 { return(*(int *)0); }
4509
4510#undef _nc_push_token
4511void _nc_push_token(
4512 int tokclass)
4513 { /* void */ }
4514
4515#undef _nc_panic_mode
4516void _nc_panic_mode(
4517 char ch)
4518 { /* void */ }
4519
4520/* ./tinfo/parse_entry.c */
4521
4522#undef _nc_parse_entry
4523int _nc_parse_entry(
micky3879b9f5e72025-07-08 18:04:53 -04004524 ENTRY *entryp,
4525 int literal,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304526 NCURSES_BOOL silent)
4527 { return(*(int *)0); }
4528
4529#undef _nc_capcmp
4530int _nc_capcmp(
micky3879b9f5e72025-07-08 18:04:53 -04004531 const char *s,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304532 const char *t)
4533 { return(*(int *)0); }
4534
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304535/* ./tinfo/write_entry.c */
4536
4537#undef _nc_set_writedir
4538void _nc_set_writedir(
Steve Kondikae271bc2015-11-15 02:50:53 +01004539 const char *dir)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304540 { /* void */ }
4541
4542#undef _nc_write_entry
4543void _nc_write_entry(
4544 TERMTYPE *const tp)
4545 { /* void */ }
4546
micky3879b9f5e72025-07-08 18:04:53 -04004547#undef _nc_write_object
4548int _nc_write_object(
4549 TERMTYPE *tp,
4550 char *buffer,
4551 unsigned *offset,
4552 unsigned limit)
4553 { return(*(int *)0); }
4554
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304555#undef _nc_tic_written
4556int _nc_tic_written(void)
4557 { return(*(int *)0); }
4558
4559/* ./base/define_key.c */
4560
Steve Kondikae271bc2015-11-15 02:50:53 +01004561#undef define_key_sp
4562int define_key_sp(
micky3879b9f5e72025-07-08 18:04:53 -04004563 SCREEN *sp,
4564 const char *str,
Steve Kondikae271bc2015-11-15 02:50:53 +01004565 int keycode)
4566 { return(*(int *)0); }
4567
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304568#undef define_key
4569int define_key(
micky3879b9f5e72025-07-08 18:04:53 -04004570 const char *str,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304571 int keycode)
4572 { return(*(int *)0); }
4573
4574/* ./tinfo/hashed_db.c */
4575
4576#undef _nc_hashed_db
4577void _nc_hashed_db(void)
4578 { /* void */ }
4579
4580/* ./base/key_defined.c */
4581
Steve Kondikae271bc2015-11-15 02:50:53 +01004582#undef key_defined_sp
4583int key_defined_sp(
micky3879b9f5e72025-07-08 18:04:53 -04004584 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01004585 const char *str)
4586 { return(*(int *)0); }
4587
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304588#undef key_defined
4589int key_defined(
4590 const char *str)
4591 { return(*(int *)0); }
4592
4593/* ./base/keybound.c */
4594
Steve Kondikae271bc2015-11-15 02:50:53 +01004595#undef keybound_sp
4596char *keybound_sp(
micky3879b9f5e72025-07-08 18:04:53 -04004597 SCREEN *sp,
4598 int code,
Steve Kondikae271bc2015-11-15 02:50:53 +01004599 int count)
4600 { return(*(char **)0); }
4601
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304602#undef keybound
4603char *keybound(
micky3879b9f5e72025-07-08 18:04:53 -04004604 int code,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304605 int count)
4606 { return(*(char **)0); }
4607
4608/* ./base/keyok.c */
4609
Steve Kondikae271bc2015-11-15 02:50:53 +01004610#undef keyok_sp
4611int keyok_sp(
micky3879b9f5e72025-07-08 18:04:53 -04004612 SCREEN *sp,
4613 int c,
Steve Kondikae271bc2015-11-15 02:50:53 +01004614 NCURSES_BOOL flag)
4615 { return(*(int *)0); }
4616
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304617#undef keyok
4618int keyok(
micky3879b9f5e72025-07-08 18:04:53 -04004619 int c,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304620 NCURSES_BOOL flag)
4621 { return(*(int *)0); }
4622
4623/* ./base/version.c */
4624
4625#undef curses_version
4626const char *curses_version(void)
4627 { return(*(const char **)0); }