1262639Sdelphij/****************************************************************************
2262639Sdelphij * Copyright (c) 2012,2013 Free Software Foundation, Inc.                   *
3262639Sdelphij *                                                                          *
4262639Sdelphij * Permission is hereby granted, free of charge, to any person obtaining a  *
5262639Sdelphij * copy of this software and associated documentation files (the            *
6262639Sdelphij * "Software"), to deal in the Software without restriction, including      *
7262639Sdelphij * without limitation the rights to use, copy, modify, merge, publish,      *
8262639Sdelphij * distribute, distribute with modifications, sublicense, and/or sell       *
9262639Sdelphij * copies of the Software, and to permit persons to whom the Software is    *
10262639Sdelphij * furnished to do so, subject to the following conditions:                 *
11262639Sdelphij *                                                                          *
12262639Sdelphij * The above copyright notice and this permission notice shall be included  *
13262639Sdelphij * in all copies or substantial portions of the Software.                   *
14262639Sdelphij *                                                                          *
15262639Sdelphij * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
16262639Sdelphij * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
17262639Sdelphij * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
18262639Sdelphij * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
19262639Sdelphij * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
20262639Sdelphij * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
21262639Sdelphij * THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
22262639Sdelphij *                                                                          *
23262639Sdelphij * Except as contained in this notice, the name(s) of the above copyright   *
24262639Sdelphij * holders shall not be used in advertising or otherwise to promote the     *
25262639Sdelphij * sale, use or other dealings in this Software without prior written       *
26262639Sdelphij * authorization.                                                           *
27262639Sdelphij ****************************************************************************/
28262639Sdelphij
29262639Sdelphij/****************************************************************************
30262639Sdelphij *  Author: Thomas E. Dickey 2012                                           *
31262639Sdelphij ****************************************************************************/
32262639Sdelphij/* LINTLIBRARY */
33262639Sdelphij
34262639Sdelphij/* ./tinfo/access.c */
35262639Sdelphij
36262639Sdelphij#include <curses.priv.h>
37262639Sdelphij#include <ctype.h>
38262639Sdelphij#include <tic.h>
39262639Sdelphij
40262639Sdelphij#undef _nc_rootname
41262639Sdelphijchar	*_nc_rootname(
42262639Sdelphij		char	*path)
43262639Sdelphij		{ return(*(char **)0); }
44262639Sdelphij
45262639Sdelphij#undef _nc_is_abs_path
46262639SdelphijNCURSES_BOOL _nc_is_abs_path(
47262639Sdelphij		const char *path)
48262639Sdelphij		{ return(*(NCURSES_BOOL *)0); }
49262639Sdelphij
50262639Sdelphij#undef _nc_pathlast
51262639Sdelphijunsigned _nc_pathlast(
52262639Sdelphij		const char *path)
53262639Sdelphij		{ return(*(unsigned *)0); }
54262639Sdelphij
55262639Sdelphij#undef _nc_basename
56262639Sdelphijchar	*_nc_basename(
57262639Sdelphij		char	*path)
58262639Sdelphij		{ return(*(char **)0); }
59262639Sdelphij
60262639Sdelphij#undef _nc_access
61262639Sdelphijint	_nc_access(
62262639Sdelphij		const char *path, 
63262639Sdelphij		int	mode)
64262639Sdelphij		{ return(*(int *)0); }
65262639Sdelphij
66262639Sdelphij#undef _nc_is_dir_path
67262639SdelphijNCURSES_BOOL _nc_is_dir_path(
68262639Sdelphij		const char *path)
69262639Sdelphij		{ return(*(NCURSES_BOOL *)0); }
70262639Sdelphij
71262639Sdelphij#undef _nc_is_file_path
72262639SdelphijNCURSES_BOOL _nc_is_file_path(
73262639Sdelphij		const char *path)
74262639Sdelphij		{ return(*(NCURSES_BOOL *)0); }
75262639Sdelphij
76262639Sdelphij#undef _nc_env_access
77262639Sdelphijint	_nc_env_access(void)
78262639Sdelphij		{ return(*(int *)0); }
79262639Sdelphij
80262639Sdelphij/* ./tinfo/add_tries.c */
81262639Sdelphij
82262639Sdelphij#undef _nc_add_to_try
83262639Sdelphijint	_nc_add_to_try(
84262639Sdelphij		TRIES	**tree, 
85262639Sdelphij		const char *str, 
86262639Sdelphij		unsigned code)
87262639Sdelphij		{ return(*(int *)0); }
88262639Sdelphij
89262639Sdelphij/* ./tinfo/alloc_ttype.c */
90262639Sdelphij
91262639Sdelphij#undef _nc_align_termtype
92262639Sdelphijvoid	_nc_align_termtype(
93262639Sdelphij		TERMTYPE *to, 
94262639Sdelphij		TERMTYPE *from)
95262639Sdelphij		{ /* void */ }
96262639Sdelphij
97262639Sdelphij#undef _nc_copy_termtype
98262639Sdelphijvoid	_nc_copy_termtype(
99262639Sdelphij		TERMTYPE *dst, 
100262639Sdelphij		const TERMTYPE *src)
101262639Sdelphij		{ /* void */ }
102262639Sdelphij
103262639Sdelphij/* ./codes.c */
104262639Sdelphij
105262639Sdelphij#undef _nc_boolcodes
106262639Sdelphijchar	*const *_nc_boolcodes(void)
107262639Sdelphij		{ return(*(char **)0); }
108262639Sdelphij
109262639Sdelphij#undef _nc_numcodes
110262639Sdelphijchar	*const *_nc_numcodes(void)
111262639Sdelphij		{ return(*(char **)0); }
112262639Sdelphij
113262639Sdelphij#undef _nc_strcodes
114262639Sdelphijchar	*const *_nc_strcodes(void)
115262639Sdelphij		{ return(*(char **)0); }
116262639Sdelphij
117262639Sdelphij/* ./comp_captab.c */
118262639Sdelphij
119262639Sdelphij#include <hashsize.h>
120262639Sdelphij
121262639Sdelphij#undef _nc_get_table
122262639Sdelphijconst struct name_table_entry *_nc_get_table(
123262639Sdelphij		NCURSES_BOOL termcap)
124262639Sdelphij		{ return(*(const struct name_table_entry **)0); }
125262639Sdelphij
126262639Sdelphij#undef _nc_get_hash_table
127262639Sdelphijconst HashValue *_nc_get_hash_table(
128262639Sdelphij		NCURSES_BOOL termcap)
129262639Sdelphij		{ return(*(const HashValue **)0); }
130262639Sdelphij
131262639Sdelphij#undef _nc_get_alias_table
132262639Sdelphijconst struct alias *_nc_get_alias_table(
133262639Sdelphij		NCURSES_BOOL termcap)
134262639Sdelphij		{ return(*(const struct alias **)0); }
135262639Sdelphij
136262639Sdelphij#undef _nc_get_hash_info
137262639Sdelphijconst HashData *_nc_get_hash_info(
138262639Sdelphij		NCURSES_BOOL termcap)
139262639Sdelphij		{ return(*(const HashData **)0); }
140262639Sdelphij
141262639Sdelphij/* ./tinfo/comp_error.c */
142262639Sdelphij
143262639Sdelphij#undef _nc_suppress_warnings
144262639SdelphijNCURSES_BOOL _nc_suppress_warnings;
145262639Sdelphij#undef _nc_curr_line
146262639Sdelphijint	_nc_curr_line;
147262639Sdelphij#undef _nc_curr_col
148262639Sdelphijint	_nc_curr_col;
149262639Sdelphij
150262639Sdelphij#undef _nc_get_source
151262639Sdelphijconst char *_nc_get_source(void)
152262639Sdelphij		{ return(*(const char **)0); }
153262639Sdelphij
154262639Sdelphij#undef _nc_set_source
155262639Sdelphijvoid	_nc_set_source(
156262639Sdelphij		const char *const name)
157262639Sdelphij		{ /* void */ }
158262639Sdelphij
159262639Sdelphij#undef _nc_set_type
160262639Sdelphijvoid	_nc_set_type(
161262639Sdelphij		const char *const name)
162262639Sdelphij		{ /* void */ }
163262639Sdelphij
164262639Sdelphij#undef _nc_get_type
165262639Sdelphijvoid	_nc_get_type(
166262639Sdelphij		char	*name)
167262639Sdelphij		{ /* void */ }
168262639Sdelphij
169262639Sdelphij#undef _nc_warning
170262639Sdelphijvoid	_nc_warning(
171262639Sdelphij		const char *const fmt, 
172262639Sdelphij		...)
173262639Sdelphij		{ /* void */ }
174262639Sdelphij
175262639Sdelphij#undef _nc_err_abort
176262639Sdelphijvoid	_nc_err_abort(
177262639Sdelphij		const char *const fmt, 
178262639Sdelphij		...)
179262639Sdelphij		{ /* void */ }
180262639Sdelphij
181262639Sdelphij#undef _nc_syserr_abort
182262639Sdelphijvoid	_nc_syserr_abort(
183262639Sdelphij		const char *const fmt, 
184262639Sdelphij		...)
185262639Sdelphij		{ /* void */ }
186262639Sdelphij
187262639Sdelphij/* ./tinfo/comp_hash.c */
188262639Sdelphij
189262639Sdelphij#undef _nc_find_entry
190262639Sdelphijstruct name_table_entry const *_nc_find_entry(
191262639Sdelphij		const char *string, 
192262639Sdelphij		const HashValue *hash_table)
193262639Sdelphij		{ return(*(struct name_table_entry const **)0); }
194262639Sdelphij
195262639Sdelphij#undef _nc_find_type_entry
196262639Sdelphijstruct name_table_entry const *_nc_find_type_entry(
197262639Sdelphij		const char *string, 
198262639Sdelphij		int	type, 
199262639Sdelphij		NCURSES_BOOL termcap)
200262639Sdelphij		{ return(*(struct name_table_entry const **)0); }
201262639Sdelphij
202262639Sdelphij/* ./tinfo/db_iterator.c */
203262639Sdelphij
204262639Sdelphij#include <time.h>
205262639Sdelphij
206262639Sdelphij#undef _nc_tic_dir
207262639Sdelphijconst char *_nc_tic_dir(
208262639Sdelphij		const char *path)
209262639Sdelphij		{ return(*(const char **)0); }
210262639Sdelphij
211262639Sdelphij#undef _nc_keep_tic_dir
212262639Sdelphijvoid	_nc_keep_tic_dir(
213262639Sdelphij		const char *path)
214262639Sdelphij		{ /* void */ }
215262639Sdelphij
216262639Sdelphij#undef _nc_last_db
217262639Sdelphijvoid	_nc_last_db(void)
218262639Sdelphij		{ /* void */ }
219262639Sdelphij
220262639Sdelphij#undef _nc_next_db
221262639Sdelphijconst char *_nc_next_db(
222262639Sdelphij		DBDIRS	*state, 
223262639Sdelphij		int	*offset)
224262639Sdelphij		{ return(*(const char **)0); }
225262639Sdelphij
226262639Sdelphij#undef _nc_first_db
227262639Sdelphijvoid	_nc_first_db(
228262639Sdelphij		DBDIRS	*state, 
229262639Sdelphij		int	*offset)
230262639Sdelphij		{ /* void */ }
231262639Sdelphij
232262639Sdelphij/* ./tinfo/doalloc.c */
233262639Sdelphij
234262639Sdelphij#undef _nc_doalloc
235262639Sdelphijvoid	*_nc_doalloc(
236262639Sdelphij		void	*oldp, 
237262639Sdelphij		size_t	amount)
238262639Sdelphij		{ return(*(void **)0); }
239262639Sdelphij
240262639Sdelphij/* ./tinfo/entries.c */
241262639Sdelphij
242262639Sdelphij#undef _nc_head
243262639SdelphijENTRY	*_nc_head;
244262639Sdelphij#undef _nc_tail
245262639SdelphijENTRY	*_nc_tail;
246262639Sdelphij
247262639Sdelphij#undef _nc_free_entry
248262639Sdelphijvoid	_nc_free_entry(
249262639Sdelphij		ENTRY	*headp, 
250262639Sdelphij		TERMTYPE *tterm)
251262639Sdelphij		{ /* void */ }
252262639Sdelphij
253262639Sdelphij#undef _nc_free_entries
254262639Sdelphijvoid	_nc_free_entries(
255262639Sdelphij		ENTRY	*headp)
256262639Sdelphij		{ /* void */ }
257262639Sdelphij
258262639Sdelphij#undef _nc_delink_entry
259262639SdelphijENTRY	*_nc_delink_entry(
260262639Sdelphij		ENTRY	*headp, 
261262639Sdelphij		TERMTYPE *tterm)
262262639Sdelphij		{ return(*(ENTRY **)0); }
263262639Sdelphij
264262639Sdelphij#undef _nc_leaks_tinfo
265262639Sdelphijvoid	_nc_leaks_tinfo(void)
266262639Sdelphij		{ /* void */ }
267262639Sdelphij
268262639Sdelphij/* ./fallback.c */
269262639Sdelphij
270262639Sdelphij#undef _nc_fallback
271262639Sdelphijconst TERMTYPE *_nc_fallback(
272262639Sdelphij		const char *name)
273262639Sdelphij		{ return(*(const TERMTYPE **)0); }
274262639Sdelphij
275262639Sdelphij/* ./tinfo/free_ttype.c */
276262639Sdelphij
277262639Sdelphij#undef _nc_free_termtype
278262639Sdelphijvoid	_nc_free_termtype(
279262639Sdelphij		TERMTYPE *ptr)
280262639Sdelphij		{ /* void */ }
281262639Sdelphij
282262639Sdelphij#undef _nc_user_definable
283262639SdelphijNCURSES_BOOL _nc_user_definable;
284262639Sdelphij
285262639Sdelphij#undef use_extended_names
286262639Sdelphijint	use_extended_names(
287262639Sdelphij		NCURSES_BOOL flag)
288262639Sdelphij		{ return(*(int *)0); }
289262639Sdelphij
290262639Sdelphij/* ./tinfo/getenv_num.c */
291262639Sdelphij
292262639Sdelphij#undef _nc_getenv_num
293262639Sdelphijint	_nc_getenv_num(
294262639Sdelphij		const char *name)
295262639Sdelphij		{ return(*(int *)0); }
296262639Sdelphij
297262639Sdelphij#undef _nc_setenv_num
298262639Sdelphijvoid	_nc_setenv_num(
299262639Sdelphij		const char *name, 
300262639Sdelphij		int	value)
301262639Sdelphij		{ /* void */ }
302262639Sdelphij
303262639Sdelphij/* ./tinfo/home_terminfo.c */
304262639Sdelphij
305262639Sdelphij#undef _nc_home_terminfo
306262639Sdelphijchar	*_nc_home_terminfo(void)
307262639Sdelphij		{ return(*(char **)0); }
308262639Sdelphij
309262639Sdelphij/* ./tinfo/init_keytry.c */
310262639Sdelphij
311262639Sdelphij#if 0
312262639Sdelphij
313262639Sdelphij#include <init_keytry.h>
314262639Sdelphij
315262639Sdelphij#undef _nc_tinfo_fkeys
316262639Sdelphijconst struct tinfo_fkeys _nc_tinfo_fkeys[] = {0};
317262639Sdelphij
318262639Sdelphij#endif
319262639Sdelphij
320262639Sdelphij#undef _nc_init_keytry
321262639Sdelphijvoid	_nc_init_keytry(
322262639Sdelphij		SCREEN	*sp)
323262639Sdelphij		{ /* void */ }
324262639Sdelphij
325262639Sdelphij/* ./tinfo/lib_acs.c */
326262639Sdelphij
327262639Sdelphij#undef _nc_acs_map
328262639Sdelphijchtype	*_nc_acs_map(void)
329262639Sdelphij		{ return(*(chtype **)0); }
330262639Sdelphij
331262639Sdelphij#undef _nc_init_acs_sp
332262639Sdelphijvoid	_nc_init_acs_sp(
333262639Sdelphij		SCREEN	*sp)
334262639Sdelphij		{ /* void */ }
335262639Sdelphij
336262639Sdelphij#undef _nc_init_acs
337262639Sdelphijvoid	_nc_init_acs(void)
338262639Sdelphij		{ /* void */ }
339262639Sdelphij
340262639Sdelphij/* ./tinfo/lib_baudrate.c */
341262639Sdelphij
342262639Sdelphij#include <termcap.h>
343262639Sdelphij
344262639Sdelphijstruct speed {
345262639Sdelphij    int s; 
346262639Sdelphij    int sp; 
347262639Sdelphij};
348262639Sdelphij
349262639Sdelphij#undef _nc_baudrate
350262639Sdelphijint	_nc_baudrate(
351262639Sdelphij		int	OSpeed)
352262639Sdelphij		{ return(*(int *)0); }
353262639Sdelphij
354262639Sdelphij#undef _nc_ospeed
355262639Sdelphijint	_nc_ospeed(
356262639Sdelphij		int	BaudRate)
357262639Sdelphij		{ return(*(int *)0); }
358262639Sdelphij
359262639Sdelphij#undef baudrate_sp
360262639Sdelphijint	baudrate_sp(
361262639Sdelphij		SCREEN	*sp)
362262639Sdelphij		{ return(*(int *)0); }
363262639Sdelphij
364262639Sdelphij#undef baudrate
365262639Sdelphijint	baudrate(void)
366262639Sdelphij		{ return(*(int *)0); }
367262639Sdelphij
368262639Sdelphij/* ./tinfo/lib_cur_term.c */
369262639Sdelphij
370262639Sdelphij#undef _nc_get_cur_term_sp
371262639SdelphijTERMINAL *_nc_get_cur_term_sp(
372262639Sdelphij		SCREEN	*sp)
373262639Sdelphij		{ return(*(TERMINAL **)0); }
374262639Sdelphij
375262639Sdelphij#undef _nc_get_cur_term
376262639SdelphijTERMINAL *_nc_get_cur_term(void)
377262639Sdelphij		{ return(*(TERMINAL **)0); }
378262639Sdelphij
379262639Sdelphij#undef _nc_cur_term
380262639SdelphijTERMINAL *_nc_cur_term(void)
381262639Sdelphij		{ return(*(TERMINAL **)0); }
382262639Sdelphij
383262639Sdelphij#undef set_curterm_sp
384262639SdelphijTERMINAL *set_curterm_sp(
385262639Sdelphij		SCREEN	*sp, 
386262639Sdelphij		TERMINAL *termp)
387262639Sdelphij		{ return(*(TERMINAL **)0); }
388262639Sdelphij
389262639Sdelphij#undef set_curterm
390262639SdelphijTERMINAL *set_curterm(
391262639Sdelphij		TERMINAL *termp)
392262639Sdelphij		{ return(*(TERMINAL **)0); }
393262639Sdelphij
394262639Sdelphij#undef del_curterm_sp
395262639Sdelphijint	del_curterm_sp(
396262639Sdelphij		SCREEN	*sp, 
397262639Sdelphij		TERMINAL *termp)
398262639Sdelphij		{ return(*(int *)0); }
399262639Sdelphij
400262639Sdelphij#undef del_curterm
401262639Sdelphijint	del_curterm(
402262639Sdelphij		TERMINAL *termp)
403262639Sdelphij		{ return(*(int *)0); }
404262639Sdelphij
405262639Sdelphij/* ./tinfo/lib_data.c */
406262639Sdelphij
407262639Sdelphij#undef _nc_stdscr
408262639SdelphijWINDOW	*_nc_stdscr(void)
409262639Sdelphij		{ return(*(WINDOW **)0); }
410262639Sdelphij
411262639Sdelphij#undef _nc_curscr
412262639SdelphijWINDOW	*_nc_curscr(void)
413262639Sdelphij		{ return(*(WINDOW **)0); }
414262639Sdelphij
415262639Sdelphij#undef _nc_newscr
416262639SdelphijWINDOW	*_nc_newscr(void)
417262639Sdelphij		{ return(*(WINDOW **)0); }
418262639Sdelphij
419262639Sdelphij#undef _nc_screen_chain
420262639SdelphijSCREEN	*_nc_screen_chain;
421262639Sdelphij#undef SP
422262639SdelphijSCREEN	*SP;
423262639Sdelphij#undef _nc_globals
424262639SdelphijNCURSES_GLOBALS _nc_globals;
425262639Sdelphij#undef _nc_prescreen
426262639SdelphijNCURSES_PRESCREEN _nc_prescreen;
427262639Sdelphij
428262639Sdelphij#undef _nc_screen_of
429262639SdelphijSCREEN	*_nc_screen_of(
430262639Sdelphij		WINDOW	*win)
431262639Sdelphij		{ return(*(SCREEN **)0); }
432262639Sdelphij
433262639Sdelphij#undef _nc_init_pthreads
434262639Sdelphijvoid	_nc_init_pthreads(void)
435262639Sdelphij		{ /* void */ }
436262639Sdelphij
437262639Sdelphij#undef _nc_mutex_init
438262639Sdelphijvoid	_nc_mutex_init(
439262639Sdelphij		pthread_mutex_t *obj)
440262639Sdelphij		{ /* void */ }
441262639Sdelphij
442262639Sdelphij#undef _nc_mutex_lock
443262639Sdelphijint	_nc_mutex_lock(
444262639Sdelphij		pthread_mutex_t *obj)
445262639Sdelphij		{ return(*(int *)0); }
446262639Sdelphij
447262639Sdelphij#undef _nc_mutex_trylock
448262639Sdelphijint	_nc_mutex_trylock(
449262639Sdelphij		pthread_mutex_t *obj)
450262639Sdelphij		{ return(*(int *)0); }
451262639Sdelphij
452262639Sdelphij#undef _nc_mutex_unlock
453262639Sdelphijint	_nc_mutex_unlock(
454262639Sdelphij		pthread_mutex_t *obj)
455262639Sdelphij		{ return(*(int *)0); }
456262639Sdelphij
457262639Sdelphij/* ./tinfo/lib_has_cap.c */
458262639Sdelphij
459262639Sdelphij#undef has_ic_sp
460262639SdelphijNCURSES_BOOL has_ic_sp(
461262639Sdelphij		SCREEN	*sp)
462262639Sdelphij		{ return(*(NCURSES_BOOL *)0); }
463262639Sdelphij
464262639Sdelphij#undef has_ic
465262639SdelphijNCURSES_BOOL has_ic(void)
466262639Sdelphij		{ return(*(NCURSES_BOOL *)0); }
467262639Sdelphij
468262639Sdelphij#undef has_il_sp
469262639SdelphijNCURSES_BOOL has_il_sp(
470262639Sdelphij		SCREEN	*sp)
471262639Sdelphij		{ return(*(NCURSES_BOOL *)0); }
472262639Sdelphij
473262639Sdelphij#undef has_il
474262639SdelphijNCURSES_BOOL has_il(void)
475262639Sdelphij		{ return(*(NCURSES_BOOL *)0); }
476262639Sdelphij
477262639Sdelphij/* ./tinfo/lib_kernel.c */
478262639Sdelphij
479262639Sdelphij#undef erasechar_sp
480262639Sdelphijchar	erasechar_sp(
481262639Sdelphij		SCREEN	*sp)
482262639Sdelphij		{ return(*(char *)0); }
483262639Sdelphij
484262639Sdelphij#undef erasechar
485262639Sdelphijchar	erasechar(void)
486262639Sdelphij		{ return(*(char *)0); }
487262639Sdelphij
488262639Sdelphij#undef killchar_sp
489262639Sdelphijchar	killchar_sp(
490262639Sdelphij		SCREEN	*sp)
491262639Sdelphij		{ return(*(char *)0); }
492262639Sdelphij
493262639Sdelphij#undef killchar
494262639Sdelphijchar	killchar(void)
495262639Sdelphij		{ return(*(char *)0); }
496262639Sdelphij
497262639Sdelphij#undef flushinp_sp
498262639Sdelphijint	flushinp_sp(
499262639Sdelphij		SCREEN	*sp)
500262639Sdelphij		{ return(*(int *)0); }
501262639Sdelphij
502262639Sdelphij#undef flushinp
503262639Sdelphijint	flushinp(void)
504262639Sdelphij		{ return(*(int *)0); }
505262639Sdelphij
506262639Sdelphij/* ./lib_keyname.c */
507262639Sdelphij
508262639Sdelphijstruct kn { short offset; int code; };
509262639Sdelphij
510262639Sdelphij#undef keyname_sp
511262639Sdelphijchar	*keyname_sp(
512262639Sdelphij		SCREEN	*sp, 
513262639Sdelphij		int	c)
514262639Sdelphij		{ return(*(char **)0); }
515262639Sdelphij
516262639Sdelphij#undef keyname
517262639Sdelphijchar	*keyname(
518262639Sdelphij		int	c)
519262639Sdelphij		{ return(*(char **)0); }
520262639Sdelphij
521262639Sdelphij/* ./tinfo/lib_longname.c */
522262639Sdelphij
523262639Sdelphij#undef longname_sp
524262639Sdelphijchar	*longname_sp(
525262639Sdelphij		SCREEN	*sp)
526262639Sdelphij		{ return(*(char **)0); }
527262639Sdelphij
528262639Sdelphij#undef longname
529262639Sdelphijchar	*longname(void)
530262639Sdelphij		{ return(*(char **)0); }
531262639Sdelphij
532262639Sdelphij/* ./tinfo/lib_napms.c */
533262639Sdelphij
534262639Sdelphij#undef napms_sp
535262639Sdelphijint	napms_sp(
536262639Sdelphij		SCREEN	*sp, 
537262639Sdelphij		int	ms)
538262639Sdelphij		{ return(*(int *)0); }
539262639Sdelphij
540262639Sdelphij#undef napms
541262639Sdelphijint	napms(
542262639Sdelphij		int	ms)
543262639Sdelphij		{ return(*(int *)0); }
544262639Sdelphij
545262639Sdelphij/* ./tinfo/lib_options.c */
546262639Sdelphij
547262639Sdelphij#undef idlok
548262639Sdelphijint	idlok(
549262639Sdelphij		WINDOW	*win, 
550262639Sdelphij		NCURSES_BOOL flag)
551262639Sdelphij		{ return(*(int *)0); }
552262639Sdelphij
553262639Sdelphij#undef idcok
554262639Sdelphijvoid	idcok(
555262639Sdelphij		WINDOW	*win, 
556262639Sdelphij		NCURSES_BOOL flag)
557262639Sdelphij		{ /* void */ }
558262639Sdelphij
559262639Sdelphij#undef halfdelay_sp
560262639Sdelphijint	halfdelay_sp(
561262639Sdelphij		SCREEN	*sp, 
562262639Sdelphij		int	t)
563262639Sdelphij		{ return(*(int *)0); }
564262639Sdelphij
565262639Sdelphij#undef halfdelay
566262639Sdelphijint	halfdelay(
567262639Sdelphij		int	t)
568262639Sdelphij		{ return(*(int *)0); }
569262639Sdelphij
570262639Sdelphij#undef nodelay
571262639Sdelphijint	nodelay(
572262639Sdelphij		WINDOW	*win, 
573262639Sdelphij		NCURSES_BOOL flag)
574262639Sdelphij		{ return(*(int *)0); }
575262639Sdelphij
576262639Sdelphij#undef notimeout
577262639Sdelphijint	notimeout(
578262639Sdelphij		WINDOW	*win, 
579262639Sdelphij		NCURSES_BOOL f)
580262639Sdelphij		{ return(*(int *)0); }
581262639Sdelphij
582262639Sdelphij#undef wtimeout
583262639Sdelphijvoid	wtimeout(
584262639Sdelphij		WINDOW	*win, 
585262639Sdelphij		int	delay)
586262639Sdelphij		{ /* void */ }
587262639Sdelphij
588262639Sdelphij#undef keypad
589262639Sdelphijint	keypad(
590262639Sdelphij		WINDOW	*win, 
591262639Sdelphij		NCURSES_BOOL flag)
592262639Sdelphij		{ return(*(int *)0); }
593262639Sdelphij
594262639Sdelphij#undef meta
595262639Sdelphijint	meta(
596262639Sdelphij		WINDOW	*win, 
597262639Sdelphij		NCURSES_BOOL flag)
598262639Sdelphij		{ return(*(int *)0); }
599262639Sdelphij
600262639Sdelphij#undef curs_set_sp
601262639Sdelphijint	curs_set_sp(
602262639Sdelphij		SCREEN	*sp, 
603262639Sdelphij		int	vis)
604262639Sdelphij		{ return(*(int *)0); }
605262639Sdelphij
606262639Sdelphij#undef curs_set
607262639Sdelphijint	curs_set(
608262639Sdelphij		int	vis)
609262639Sdelphij		{ return(*(int *)0); }
610262639Sdelphij
611262639Sdelphij#undef typeahead_sp
612262639Sdelphijint	typeahead_sp(
613262639Sdelphij		SCREEN	*sp, 
614262639Sdelphij		int	fd)
615262639Sdelphij		{ return(*(int *)0); }
616262639Sdelphij
617262639Sdelphij#undef typeahead
618262639Sdelphijint	typeahead(
619262639Sdelphij		int	fd)
620262639Sdelphij		{ return(*(int *)0); }
621262639Sdelphij
622262639Sdelphij#undef has_key_sp
623262639Sdelphijint	has_key_sp(
624262639Sdelphij		SCREEN	*sp, 
625262639Sdelphij		int	keycode)
626262639Sdelphij		{ return(*(int *)0); }
627262639Sdelphij
628262639Sdelphij#undef has_key
629262639Sdelphijint	has_key(
630262639Sdelphij		int	keycode)
631262639Sdelphij		{ return(*(int *)0); }
632262639Sdelphij
633262639Sdelphij#undef _nc_putp_flush_sp
634262639Sdelphijint	_nc_putp_flush_sp(
635262639Sdelphij		SCREEN	*sp, 
636262639Sdelphij		const char *name, 
637262639Sdelphij		const char *value)
638262639Sdelphij		{ return(*(int *)0); }
639262639Sdelphij
640262639Sdelphij#undef _nc_keypad
641262639Sdelphijint	_nc_keypad(
642262639Sdelphij		SCREEN	*sp, 
643262639Sdelphij		int	flag)
644262639Sdelphij		{ return(*(int *)0); }
645262639Sdelphij
646262639Sdelphij/* ./tinfo/lib_raw.c */
647262639Sdelphij
648262639Sdelphij#undef raw_sp
649262639Sdelphijint	raw_sp(
650262639Sdelphij		SCREEN	*sp)
651262639Sdelphij		{ return(*(int *)0); }
652262639Sdelphij
653262639Sdelphij#undef raw
654262639Sdelphijint	raw(void)
655262639Sdelphij		{ return(*(int *)0); }
656262639Sdelphij
657262639Sdelphij#undef cbreak_sp
658262639Sdelphijint	cbreak_sp(
659262639Sdelphij		SCREEN	*sp)
660262639Sdelphij		{ return(*(int *)0); }
661262639Sdelphij
662262639Sdelphij#undef cbreak
663262639Sdelphijint	cbreak(void)
664262639Sdelphij		{ return(*(int *)0); }
665262639Sdelphij
666262639Sdelphij#undef qiflush_sp
667262639Sdelphijvoid	qiflush_sp(
668262639Sdelphij		SCREEN	*sp)
669262639Sdelphij		{ /* void */ }
670262639Sdelphij
671262639Sdelphij#undef qiflush
672262639Sdelphijvoid	qiflush(void)
673262639Sdelphij		{ /* void */ }
674262639Sdelphij
675262639Sdelphij#undef noraw_sp
676262639Sdelphijint	noraw_sp(
677262639Sdelphij		SCREEN	*sp)
678262639Sdelphij		{ return(*(int *)0); }
679262639Sdelphij
680262639Sdelphij#undef noraw
681262639Sdelphijint	noraw(void)
682262639Sdelphij		{ return(*(int *)0); }
683262639Sdelphij
684262639Sdelphij#undef nocbreak_sp
685262639Sdelphijint	nocbreak_sp(
686262639Sdelphij		SCREEN	*sp)
687262639Sdelphij		{ return(*(int *)0); }
688262639Sdelphij
689262639Sdelphij#undef nocbreak
690262639Sdelphijint	nocbreak(void)
691262639Sdelphij		{ return(*(int *)0); }
692262639Sdelphij
693262639Sdelphij#undef noqiflush_sp
694262639Sdelphijvoid	noqiflush_sp(
695262639Sdelphij		SCREEN	*sp)
696262639Sdelphij		{ /* void */ }
697262639Sdelphij
698262639Sdelphij#undef noqiflush
699262639Sdelphijvoid	noqiflush(void)
700262639Sdelphij		{ /* void */ }
701262639Sdelphij
702262639Sdelphij#undef intrflush_sp
703262639Sdelphijint	intrflush_sp(
704262639Sdelphij		SCREEN	*sp, 
705262639Sdelphij		WINDOW	*win, 
706262639Sdelphij		NCURSES_BOOL flag)
707262639Sdelphij		{ return(*(int *)0); }
708262639Sdelphij
709262639Sdelphij#undef intrflush
710262639Sdelphijint	intrflush(
711262639Sdelphij		WINDOW	*win, 
712262639Sdelphij		NCURSES_BOOL flag)
713262639Sdelphij		{ return(*(int *)0); }
714262639Sdelphij
715262639Sdelphij/* ./tinfo/lib_setup.c */
716262639Sdelphij
717262639Sdelphij#include <locale.h>
718262639Sdelphij#include <sys/ioctl.h>
719262639Sdelphij#include <langinfo.h>
720262639Sdelphij
721262639Sdelphij#undef _nc_ttytype
722262639Sdelphijchar	*_nc_ttytype(void)
723262639Sdelphij		{ return(*(char **)0); }
724262639Sdelphij
725262639Sdelphij#undef _nc_ptr_Lines
726262639Sdelphijint	*_nc_ptr_Lines(
727262639Sdelphij		SCREEN	*sp)
728262639Sdelphij		{ return(*(int **)0); }
729262639Sdelphij
730262639Sdelphij#undef _nc_LINES
731262639Sdelphijint	_nc_LINES(void)
732262639Sdelphij		{ return(*(int *)0); }
733262639Sdelphij
734262639Sdelphij#undef _nc_ptr_Cols
735262639Sdelphijint	*_nc_ptr_Cols(
736262639Sdelphij		SCREEN	*sp)
737262639Sdelphij		{ return(*(int **)0); }
738262639Sdelphij
739262639Sdelphij#undef _nc_COLS
740262639Sdelphijint	_nc_COLS(void)
741262639Sdelphij		{ return(*(int *)0); }
742262639Sdelphij
743262639Sdelphij#undef _nc_ptr_Tabsize
744262639Sdelphijint	*_nc_ptr_Tabsize(
745262639Sdelphij		SCREEN	*sp)
746262639Sdelphij		{ return(*(int **)0); }
747262639Sdelphij
748262639Sdelphij#undef _nc_TABSIZE
749262639Sdelphijint	_nc_TABSIZE(void)
750262639Sdelphij		{ return(*(int *)0); }
751262639Sdelphij
752262639Sdelphij#undef set_tabsize_sp
753262639Sdelphijint	set_tabsize_sp(
754262639Sdelphij		SCREEN	*sp, 
755262639Sdelphij		int	value)
756262639Sdelphij		{ return(*(int *)0); }
757262639Sdelphij
758262639Sdelphij#undef set_tabsize
759262639Sdelphijint	set_tabsize(
760262639Sdelphij		int	value)
761262639Sdelphij		{ return(*(int *)0); }
762262639Sdelphij
763262639Sdelphij#undef _nc_handle_sigwinch
764262639Sdelphijint	_nc_handle_sigwinch(
765262639Sdelphij		SCREEN	*sp)
766262639Sdelphij		{ return(*(int *)0); }
767262639Sdelphij
768262639Sdelphij#undef use_env_sp
769262639Sdelphijvoid	use_env_sp(
770262639Sdelphij		SCREEN	*sp, 
771262639Sdelphij		NCURSES_BOOL f)
772262639Sdelphij		{ /* void */ }
773262639Sdelphij
774262639Sdelphij#undef use_tioctl_sp
775262639Sdelphijvoid	use_tioctl_sp(
776262639Sdelphij		SCREEN	*sp, 
777262639Sdelphij		NCURSES_BOOL f)
778262639Sdelphij		{ /* void */ }
779262639Sdelphij
780262639Sdelphij#undef use_env
781262639Sdelphijvoid	use_env(
782262639Sdelphij		NCURSES_BOOL f)
783262639Sdelphij		{ /* void */ }
784262639Sdelphij
785262639Sdelphij#undef use_tioctl
786262639Sdelphijvoid	use_tioctl(
787262639Sdelphij		NCURSES_BOOL f)
788262639Sdelphij		{ /* void */ }
789262639Sdelphij
790262639Sdelphij#undef _nc_get_screensize
791262639Sdelphijvoid	_nc_get_screensize(
792262639Sdelphij		SCREEN	*sp, 
793262639Sdelphij		int	*linep, 
794262639Sdelphij		int	*colp)
795262639Sdelphij		{ /* void */ }
796262639Sdelphij
797262639Sdelphij#undef _nc_update_screensize
798262639Sdelphijvoid	_nc_update_screensize(
799262639Sdelphij		SCREEN	*sp)
800262639Sdelphij		{ /* void */ }
801262639Sdelphij
802262639Sdelphij#undef _nc_setup_tinfo
803262639Sdelphijint	_nc_setup_tinfo(
804262639Sdelphij		const char *const tn, 
805262639Sdelphij		TERMTYPE *const tp)
806262639Sdelphij		{ return(*(int *)0); }
807262639Sdelphij
808262639Sdelphij#undef _nc_tinfo_cmdch
809262639Sdelphijvoid	_nc_tinfo_cmdch(
810262639Sdelphij		TERMINAL *termp, 
811262639Sdelphij		int	proto)
812262639Sdelphij		{ /* void */ }
813262639Sdelphij
814262639Sdelphij#undef _nc_get_locale
815262639Sdelphijchar	*_nc_get_locale(void)
816262639Sdelphij		{ return(*(char **)0); }
817262639Sdelphij
818262639Sdelphij#undef _nc_unicode_locale
819262639Sdelphijint	_nc_unicode_locale(void)
820262639Sdelphij		{ return(*(int *)0); }
821262639Sdelphij
822262639Sdelphij#undef _nc_locale_breaks_acs
823262639Sdelphijint	_nc_locale_breaks_acs(
824262639Sdelphij		TERMINAL *termp)
825262639Sdelphij		{ return(*(int *)0); }
826262639Sdelphij
827262639Sdelphij#undef _nc_setupterm
828262639Sdelphijint	_nc_setupterm(
829262639Sdelphij		char	*tname, 
830262639Sdelphij		int	Filedes, 
831262639Sdelphij		int	*errret, 
832262639Sdelphij		int	reuse)
833262639Sdelphij		{ return(*(int *)0); }
834262639Sdelphij
835262639Sdelphij#undef new_prescr
836262639SdelphijSCREEN	*new_prescr(void)
837262639Sdelphij		{ return(*(SCREEN **)0); }
838262639Sdelphij
839262639Sdelphij#undef setupterm
840262639Sdelphijint	setupterm(
841262639Sdelphij		char	*tname, 
842262639Sdelphij		int	Filedes, 
843262639Sdelphij		int	*errret)
844262639Sdelphij		{ return(*(int *)0); }
845262639Sdelphij
846262639Sdelphij/* ./tinfo/lib_termcap.c */
847262639Sdelphij
848262639Sdelphij#undef UP
849262639Sdelphijchar	*UP;
850262639Sdelphij#undef BC
851262639Sdelphijchar	*BC;
852262639Sdelphij
853262639Sdelphij#undef tgetent_sp
854262639Sdelphijint	tgetent_sp(
855262639Sdelphij		SCREEN	*sp, 
856262639Sdelphij		char	*bufp, 
857262639Sdelphij		const char *name)
858262639Sdelphij		{ return(*(int *)0); }
859262639Sdelphij
860262639Sdelphij#if 0
861262639Sdelphij
862262639Sdelphij#include <capdefaults.c>
863262639Sdelphij
864262639Sdelphij#endif
865262639Sdelphij
866262639Sdelphij#undef tgetent
867262639Sdelphijint	tgetent(
868262639Sdelphij		char	*bufp, 
869262639Sdelphij		const char *name)
870262639Sdelphij		{ return(*(int *)0); }
871262639Sdelphij
872262639Sdelphij#undef tgetflag_sp
873262639Sdelphijint	tgetflag_sp(
874262639Sdelphij		SCREEN	*sp, 
875262639Sdelphij		char	*id)
876262639Sdelphij		{ return(*(int *)0); }
877262639Sdelphij
878262639Sdelphij#undef tgetflag
879262639Sdelphijint	tgetflag(
880262639Sdelphij		char	*id)
881262639Sdelphij		{ return(*(int *)0); }
882262639Sdelphij
883262639Sdelphij#undef tgetnum_sp
884262639Sdelphijint	tgetnum_sp(
885262639Sdelphij		SCREEN	*sp, 
886262639Sdelphij		char	*id)
887262639Sdelphij		{ return(*(int *)0); }
888262639Sdelphij
889262639Sdelphij#undef tgetnum
890262639Sdelphijint	tgetnum(
891262639Sdelphij		char	*id)
892262639Sdelphij		{ return(*(int *)0); }
893262639Sdelphij
894262639Sdelphij#undef tgetstr_sp
895262639Sdelphijchar	*tgetstr_sp(
896262639Sdelphij		SCREEN	*sp, 
897262639Sdelphij		char	*id, 
898262639Sdelphij		char	**area)
899262639Sdelphij		{ return(*(char **)0); }
900262639Sdelphij
901262639Sdelphij#undef tgetstr
902262639Sdelphijchar	*tgetstr(
903262639Sdelphij		char	*id, 
904262639Sdelphij		char	**area)
905262639Sdelphij		{ return(*(char **)0); }
906262639Sdelphij
907262639Sdelphij/* ./tinfo/lib_termname.c */
908262639Sdelphij
909262639Sdelphij#undef termname_sp
910262639Sdelphijchar	*termname_sp(
911262639Sdelphij		SCREEN	*sp)
912262639Sdelphij		{ return(*(char **)0); }
913262639Sdelphij
914262639Sdelphij#undef termname
915262639Sdelphijchar	*termname(void)
916262639Sdelphij		{ return(*(char **)0); }
917262639Sdelphij
918262639Sdelphij/* ./tinfo/lib_tgoto.c */
919262639Sdelphij
920262639Sdelphij#undef tgoto
921262639Sdelphijchar	*tgoto(
922262639Sdelphij		const char *string, 
923262639Sdelphij		int	x, 
924262639Sdelphij		int	y)
925262639Sdelphij		{ return(*(char **)0); }
926262639Sdelphij
927262639Sdelphij/* ./tinfo/lib_ti.c */
928262639Sdelphij
929262639Sdelphij#undef tigetflag_sp
930262639Sdelphijint	tigetflag_sp(
931262639Sdelphij		SCREEN	*sp, 
932262639Sdelphij		char	*str)
933262639Sdelphij		{ return(*(int *)0); }
934262639Sdelphij
935262639Sdelphij#undef tigetflag
936262639Sdelphijint	tigetflag(
937262639Sdelphij		char	*str)
938262639Sdelphij		{ return(*(int *)0); }
939262639Sdelphij
940262639Sdelphij#undef tigetnum_sp
941262639Sdelphijint	tigetnum_sp(
942262639Sdelphij		SCREEN	*sp, 
943262639Sdelphij		char	*str)
944262639Sdelphij		{ return(*(int *)0); }
945262639Sdelphij
946262639Sdelphij#undef tigetnum
947262639Sdelphijint	tigetnum(
948262639Sdelphij		char	*str)
949262639Sdelphij		{ return(*(int *)0); }
950262639Sdelphij
951262639Sdelphij#undef tigetstr_sp
952262639Sdelphijchar	*tigetstr_sp(
953262639Sdelphij		SCREEN	*sp, 
954262639Sdelphij		char	*str)
955262639Sdelphij		{ return(*(char **)0); }
956262639Sdelphij
957262639Sdelphij#undef tigetstr
958262639Sdelphijchar	*tigetstr(
959262639Sdelphij		char	*str)
960262639Sdelphij		{ return(*(char **)0); }
961262639Sdelphij
962262639Sdelphij/* ./tinfo/lib_tparm.c */
963262639Sdelphij
964262639Sdelphij#undef _nc_tparm_err
965262639Sdelphijint	_nc_tparm_err;
966262639Sdelphij
967262639Sdelphij#undef _nc_tparm_analyze
968262639Sdelphijint	_nc_tparm_analyze(
969262639Sdelphij		const char *string, 
970262639Sdelphij		char	*p_is_s[9], 
971262639Sdelphij		int	*_nc_popcount)
972262639Sdelphij		{ return(*(int *)0); }
973262639Sdelphij
974262639Sdelphij#undef tparm
975262639Sdelphijchar	*tparm(
976262639Sdelphij		char	*string, 
977262639Sdelphij		...)
978262639Sdelphij		{ return(*(char **)0); }
979262639Sdelphij
980262639Sdelphij#undef tiparm
981262639Sdelphijchar	*tiparm(
982262639Sdelphij		const char *string, 
983262639Sdelphij		...)
984262639Sdelphij		{ return(*(char **)0); }
985262639Sdelphij
986262639Sdelphij/* ./tinfo/lib_tputs.c */
987262639Sdelphij
988262639Sdelphij#undef PC
989262639Sdelphijchar	PC;
990262639Sdelphij#undef ospeed
991262639Sdelphijshort	ospeed;
992262639Sdelphij#undef _nc_nulls_sent
993262639Sdelphijint	_nc_nulls_sent;
994262639Sdelphij
995262639Sdelphij#undef _nc_set_no_padding
996262639Sdelphijvoid	_nc_set_no_padding(
997262639Sdelphij		SCREEN	*sp)
998262639Sdelphij		{ /* void */ }
999262639Sdelphij
1000262639Sdelphij#undef delay_output_sp
1001262639Sdelphijint	delay_output_sp(
1002262639Sdelphij		SCREEN	*sp, 
1003262639Sdelphij		int	ms)
1004262639Sdelphij		{ return(*(int *)0); }
1005262639Sdelphij
1006262639Sdelphij#undef delay_output
1007262639Sdelphijint	delay_output(
1008262639Sdelphij		int	ms)
1009262639Sdelphij		{ return(*(int *)0); }
1010262639Sdelphij
1011262639Sdelphij#undef _nc_flush_sp
1012262639Sdelphijvoid	_nc_flush_sp(
1013262639Sdelphij		SCREEN	*sp)
1014262639Sdelphij		{ /* void */ }
1015262639Sdelphij
1016262639Sdelphij#undef _nc_flush
1017262639Sdelphijvoid	_nc_flush(void)
1018262639Sdelphij		{ /* void */ }
1019262639Sdelphij
1020262639Sdelphij#undef _nc_outch_sp
1021262639Sdelphijint	_nc_outch_sp(
1022262639Sdelphij		SCREEN	*sp, 
1023262639Sdelphij		int	ch)
1024262639Sdelphij		{ return(*(int *)0); }
1025262639Sdelphij
1026262639Sdelphij#undef _nc_outch
1027262639Sdelphijint	_nc_outch(
1028262639Sdelphij		int	ch)
1029262639Sdelphij		{ return(*(int *)0); }
1030262639Sdelphij
1031262639Sdelphij#undef _nc_putchar_sp
1032262639Sdelphijint	_nc_putchar_sp(
1033262639Sdelphij		SCREEN	*sp, 
1034262639Sdelphij		int	ch)
1035262639Sdelphij		{ return(*(int *)0); }
1036262639Sdelphij
1037262639Sdelphij#undef _nc_putchar
1038262639Sdelphijint	_nc_putchar(
1039262639Sdelphij		int	ch)
1040262639Sdelphij		{ return(*(int *)0); }
1041262639Sdelphij
1042262639Sdelphij#undef putp_sp
1043262639Sdelphijint	putp_sp(
1044262639Sdelphij		SCREEN	*sp, 
1045262639Sdelphij		const char *string)
1046262639Sdelphij		{ return(*(int *)0); }
1047262639Sdelphij
1048262639Sdelphij#undef putp
1049262639Sdelphijint	putp(
1050262639Sdelphij		const char *string)
1051262639Sdelphij		{ return(*(int *)0); }
1052262639Sdelphij
1053262639Sdelphij#undef _nc_putp_sp
1054262639Sdelphijint	_nc_putp_sp(
1055262639Sdelphij		SCREEN	*sp, 
1056262639Sdelphij		const char *name, 
1057262639Sdelphij		const char *string)
1058262639Sdelphij		{ return(*(int *)0); }
1059262639Sdelphij
1060262639Sdelphij#undef _nc_putp
1061262639Sdelphijint	_nc_putp(
1062262639Sdelphij		const char *name, 
1063262639Sdelphij		const char *string)
1064262639Sdelphij		{ return(*(int *)0); }
1065262639Sdelphij
1066262639Sdelphij#undef tputs_sp
1067262639Sdelphijint	tputs_sp(
1068262639Sdelphij		SCREEN	*sp, 
1069262639Sdelphij		const char *string, 
1070262639Sdelphij		int	affcnt, 
1071262639Sdelphij		NCURSES_OUTC_sp outc)
1072262639Sdelphij		{ return(*(int *)0); }
1073262639Sdelphij
1074262639Sdelphij#undef _nc_outc_wrapper
1075262639Sdelphijint	_nc_outc_wrapper(
1076262639Sdelphij		SCREEN	*sp, 
1077262639Sdelphij		int	c)
1078262639Sdelphij		{ return(*(int *)0); }
1079262639Sdelphij
1080262639Sdelphij#undef tputs
1081262639Sdelphijint	tputs(
1082262639Sdelphij		const char *string, 
1083262639Sdelphij		int	affcnt, 
1084262639Sdelphij		int	(*outc)(
1085262639Sdelphij		int	p1))
1086262639Sdelphij		{ return(*(int *)0); }
1087262639Sdelphij
1088262639Sdelphij/* ./trace/lib_trace.c */
1089262639Sdelphij
1090262639Sdelphij#undef _nc_tracing
1091262639Sdelphijunsigned _nc_tracing;
1092262639Sdelphij
1093262639Sdelphij#undef _nc__nc_tputs_trace
1094262639Sdelphijconst char *_nc__nc_tputs_trace(void)
1095262639Sdelphij		{ return(*(const char **)0); }
1096262639Sdelphij
1097262639Sdelphij#undef _nc__nc_outchars
1098262639Sdelphijlong	_nc__nc_outchars(void)
1099262639Sdelphij		{ return(*(long *)0); }
1100262639Sdelphij
1101262639Sdelphij#undef _nc_set_tputs_trace
1102262639Sdelphijvoid	_nc_set_tputs_trace(
1103262639Sdelphij		const char *s)
1104262639Sdelphij		{ /* void */ }
1105262639Sdelphij
1106262639Sdelphij#undef _nc_count_outchars
1107262639Sdelphijvoid	_nc_count_outchars(
1108262639Sdelphij		long	increment)
1109262639Sdelphij		{ /* void */ }
1110262639Sdelphij
1111262639Sdelphij#undef trace
1112262639Sdelphijvoid	trace(
1113262639Sdelphij		const unsigned int tracelevel)
1114262639Sdelphij		{ /* void */ }
1115262639Sdelphij
1116262639Sdelphij#undef _tracef
1117262639Sdelphijvoid	_tracef(
1118262639Sdelphij		const char *fmt, 
1119262639Sdelphij		...)
1120262639Sdelphij		{ /* void */ }
1121262639Sdelphij
1122262639Sdelphij#undef _nc_retrace_bool
1123262639SdelphijNCURSES_BOOL _nc_retrace_bool(
1124262639Sdelphij		int	code)
1125262639Sdelphij		{ return(*(NCURSES_BOOL *)0); }
1126262639Sdelphij
1127262639Sdelphij#undef _nc_retrace_char
1128262639Sdelphijchar	_nc_retrace_char(
1129262639Sdelphij		int	code)
1130262639Sdelphij		{ return(*(char *)0); }
1131262639Sdelphij
1132262639Sdelphij#undef _nc_retrace_int
1133262639Sdelphijint	_nc_retrace_int(
1134262639Sdelphij		int	code)
1135262639Sdelphij		{ return(*(int *)0); }
1136262639Sdelphij
1137262639Sdelphij#undef _nc_retrace_unsigned
1138262639Sdelphijunsigned _nc_retrace_unsigned(
1139262639Sdelphij		unsigned code)
1140262639Sdelphij		{ return(*(unsigned *)0); }
1141262639Sdelphij
1142262639Sdelphij#undef _nc_retrace_ptr
1143262639Sdelphijchar	*_nc_retrace_ptr(
1144262639Sdelphij		char	*code)
1145262639Sdelphij		{ return(*(char **)0); }
1146262639Sdelphij
1147262639Sdelphij#undef _nc_retrace_cptr
1148262639Sdelphijconst char *_nc_retrace_cptr(
1149262639Sdelphij		const char *code)
1150262639Sdelphij		{ return(*(const char **)0); }
1151262639Sdelphij
1152262639Sdelphij#undef _nc_retrace_cvoid_ptr
1153262639Sdelphijvoid	*_nc_retrace_cvoid_ptr(
1154262639Sdelphij		void	*code)
1155262639Sdelphij		{ return(*(void **)0); }
1156262639Sdelphij
1157262639Sdelphij#undef _nc_retrace_void_ptr
1158262639Sdelphijvoid	*_nc_retrace_void_ptr(
1159262639Sdelphij		void	*code)
1160262639Sdelphij		{ return(*(void **)0); }
1161262639Sdelphij
1162262639Sdelphij#undef _nc_retrace_sp
1163262639SdelphijSCREEN	*_nc_retrace_sp(
1164262639Sdelphij		SCREEN	*code)
1165262639Sdelphij		{ return(*(SCREEN **)0); }
1166262639Sdelphij
1167262639Sdelphij#undef _nc_retrace_win
1168262639SdelphijWINDOW	*_nc_retrace_win(
1169262639Sdelphij		WINDOW	*code)
1170262639Sdelphij		{ return(*(WINDOW **)0); }
1171262639Sdelphij
1172262639Sdelphij#undef _nc_use_tracef
1173262639Sdelphijint	_nc_use_tracef(
1174262639Sdelphij		unsigned mask)
1175262639Sdelphij		{ return(*(int *)0); }
1176262639Sdelphij
1177262639Sdelphij#undef _nc_locked_tracef
1178262639Sdelphijvoid	_nc_locked_tracef(
1179262639Sdelphij		const char *fmt, 
1180262639Sdelphij		...)
1181262639Sdelphij		{ /* void */ }
1182262639Sdelphij
1183262639Sdelphij/* ./trace/lib_traceatr.c */
1184262639Sdelphij
1185262639Sdelphij#undef _traceattr2
1186262639Sdelphijchar	*_traceattr2(
1187262639Sdelphij		int	bufnum, 
1188262639Sdelphij		chtype	newmode)
1189262639Sdelphij		{ return(*(char **)0); }
1190262639Sdelphij
1191262639Sdelphij#undef _traceattr
1192262639Sdelphijchar	*_traceattr(
1193262639Sdelphij		attr_t	newmode)
1194262639Sdelphij		{ return(*(char **)0); }
1195262639Sdelphij
1196262639Sdelphij#undef _nc_retrace_int_attr_t
1197262639Sdelphijint	_nc_retrace_int_attr_t(
1198262639Sdelphij		attr_t	code)
1199262639Sdelphij		{ return(*(int *)0); }
1200262639Sdelphij
1201262639Sdelphij#undef _nc_retrace_attr_t
1202262639Sdelphijattr_t	_nc_retrace_attr_t(
1203262639Sdelphij		attr_t	code)
1204262639Sdelphij		{ return(*(attr_t *)0); }
1205262639Sdelphij
1206262639Sdelphij#undef _nc_altcharset_name
1207262639Sdelphijconst char *_nc_altcharset_name(
1208262639Sdelphij		attr_t	attr, 
1209262639Sdelphij		chtype	ch)
1210262639Sdelphij		{ return(*(const char **)0); }
1211262639Sdelphij
1212262639Sdelphij#undef _tracechtype2
1213262639Sdelphijchar	*_tracechtype2(
1214262639Sdelphij		int	bufnum, 
1215262639Sdelphij		chtype	ch)
1216262639Sdelphij		{ return(*(char **)0); }
1217262639Sdelphij
1218262639Sdelphij#undef _tracechtype
1219262639Sdelphijchar	*_tracechtype(
1220262639Sdelphij		chtype	ch)
1221262639Sdelphij		{ return(*(char **)0); }
1222262639Sdelphij
1223262639Sdelphij#undef _nc_retrace_chtype
1224262639Sdelphijchtype	_nc_retrace_chtype(
1225262639Sdelphij		chtype	code)
1226262639Sdelphij		{ return(*(chtype *)0); }
1227262639Sdelphij
1228262639Sdelphij#undef _tracecchar_t2
1229262639Sdelphijchar	*_tracecchar_t2(
1230262639Sdelphij		int	bufnum, 
1231262639Sdelphij		const cchar_t *ch)
1232262639Sdelphij		{ return(*(char **)0); }
1233262639Sdelphij
1234262639Sdelphij#undef _tracecchar_t
1235262639Sdelphijchar	*_tracecchar_t(
1236262639Sdelphij		const cchar_t *ch)
1237262639Sdelphij		{ return(*(char **)0); }
1238262639Sdelphij
1239262639Sdelphij/* ./trace/lib_tracebits.c */
1240262639Sdelphij
1241262639Sdelphijtypedef struct {
1242262639Sdelphij    unsigned int val;
1243262639Sdelphij    const char *name;
1244262639Sdelphij} BITNAMES;
1245262639Sdelphij
1246262639Sdelphij#undef _nc_trace_ttymode
1247262639Sdelphijchar	*_nc_trace_ttymode(
1248262639Sdelphij		struct termios *tty)
1249262639Sdelphij		{ return(*(char **)0); }
1250262639Sdelphij
1251262639Sdelphij#undef _nc_tracebits
1252262639Sdelphijchar	*_nc_tracebits(void)
1253262639Sdelphij		{ return(*(char **)0); }
1254262639Sdelphij
1255262639Sdelphij/* ./trace/lib_tracechr.c */
1256262639Sdelphij
1257262639Sdelphij#undef _nc_tracechar
1258262639Sdelphijchar	*_nc_tracechar(
1259262639Sdelphij		SCREEN	*sp, 
1260262639Sdelphij		int	ch)
1261262639Sdelphij		{ return(*(char **)0); }
1262262639Sdelphij
1263262639Sdelphij#undef _tracechar
1264262639Sdelphijchar	*_tracechar(
1265262639Sdelphij		int	ch)
1266262639Sdelphij		{ return(*(char **)0); }
1267262639Sdelphij
1268262639Sdelphij/* ./tinfo/lib_ttyflags.c */
1269262639Sdelphij
1270262639Sdelphij#undef _nc_get_tty_mode_sp
1271262639Sdelphijint	_nc_get_tty_mode_sp(
1272262639Sdelphij		SCREEN	*sp, 
1273262639Sdelphij		struct termios *buf)
1274262639Sdelphij		{ return(*(int *)0); }
1275262639Sdelphij
1276262639Sdelphij#undef _nc_get_tty_mode
1277262639Sdelphijint	_nc_get_tty_mode(
1278262639Sdelphij		struct termios *buf)
1279262639Sdelphij		{ return(*(int *)0); }
1280262639Sdelphij
1281262639Sdelphij#undef _nc_set_tty_mode_sp
1282262639Sdelphijint	_nc_set_tty_mode_sp(
1283262639Sdelphij		SCREEN	*sp, 
1284262639Sdelphij		struct termios *buf)
1285262639Sdelphij		{ return(*(int *)0); }
1286262639Sdelphij
1287262639Sdelphij#undef _nc_set_tty_mode
1288262639Sdelphijint	_nc_set_tty_mode(
1289262639Sdelphij		struct termios *buf)
1290262639Sdelphij		{ return(*(int *)0); }
1291262639Sdelphij
1292262639Sdelphij#undef def_shell_mode_sp
1293262639Sdelphijint	def_shell_mode_sp(
1294262639Sdelphij		SCREEN	*sp)
1295262639Sdelphij		{ return(*(int *)0); }
1296262639Sdelphij
1297262639Sdelphij#undef def_shell_mode
1298262639Sdelphijint	def_shell_mode(void)
1299262639Sdelphij		{ return(*(int *)0); }
1300262639Sdelphij
1301262639Sdelphij#undef def_prog_mode_sp
1302262639Sdelphijint	def_prog_mode_sp(
1303262639Sdelphij		SCREEN	*sp)
1304262639Sdelphij		{ return(*(int *)0); }
1305262639Sdelphij
1306262639Sdelphij#undef def_prog_mode
1307262639Sdelphijint	def_prog_mode(void)
1308262639Sdelphij		{ return(*(int *)0); }
1309262639Sdelphij
1310262639Sdelphij#undef reset_prog_mode_sp
1311262639Sdelphijint	reset_prog_mode_sp(
1312262639Sdelphij		SCREEN	*sp)
1313262639Sdelphij		{ return(*(int *)0); }
1314262639Sdelphij
1315262639Sdelphij#undef reset_prog_mode
1316262639Sdelphijint	reset_prog_mode(void)
1317262639Sdelphij		{ return(*(int *)0); }
1318262639Sdelphij
1319262639Sdelphij#undef reset_shell_mode_sp
1320262639Sdelphijint	reset_shell_mode_sp(
1321262639Sdelphij		SCREEN	*sp)
1322262639Sdelphij		{ return(*(int *)0); }
1323262639Sdelphij
1324262639Sdelphij#undef reset_shell_mode
1325262639Sdelphijint	reset_shell_mode(void)
1326262639Sdelphij		{ return(*(int *)0); }
1327262639Sdelphij
1328262639Sdelphij#undef savetty_sp
1329262639Sdelphijint	savetty_sp(
1330262639Sdelphij		SCREEN	*sp)
1331262639Sdelphij		{ return(*(int *)0); }
1332262639Sdelphij
1333262639Sdelphij#undef savetty
1334262639Sdelphijint	savetty(void)
1335262639Sdelphij		{ return(*(int *)0); }
1336262639Sdelphij
1337262639Sdelphij#undef resetty_sp
1338262639Sdelphijint	resetty_sp(
1339262639Sdelphij		SCREEN	*sp)
1340262639Sdelphij		{ return(*(int *)0); }
1341262639Sdelphij
1342262639Sdelphij#undef resetty
1343262639Sdelphijint	resetty(void)
1344262639Sdelphij		{ return(*(int *)0); }
1345262639Sdelphij
1346262639Sdelphij/* ./tty/lib_twait.c */
1347262639Sdelphij
1348262639Sdelphij#include <sys/time.h>
1349262639Sdelphij
1350262639Sdelphij#undef _nc_timed_wait
1351262639Sdelphijint	_nc_timed_wait(
1352262639Sdelphij		SCREEN	*sp, 
1353262639Sdelphij		int	mode, 
1354262639Sdelphij		int	milliseconds, 
1355262639Sdelphij		int	*timeleft)
1356262639Sdelphij		{ return(*(int *)0); }
1357262639Sdelphij
1358262639Sdelphij/* ./tinfo/name_match.c */
1359262639Sdelphij
1360262639Sdelphij#undef _nc_first_name
1361262639Sdelphijchar	*_nc_first_name(
1362262639Sdelphij		const char *const sp)
1363262639Sdelphij		{ return(*(char **)0); }
1364262639Sdelphij
1365262639Sdelphij#undef _nc_name_match
1366262639Sdelphijint	_nc_name_match(
1367262639Sdelphij		const char *const namelst, 
1368262639Sdelphij		const char *const name, 
1369262639Sdelphij		const char *const delim)
1370262639Sdelphij		{ return(*(int *)0); }
1371262639Sdelphij
1372262639Sdelphij/* ./names.c */
1373262639Sdelphij
1374262639Sdelphij#undef _nc_boolnames
1375262639Sdelphijchar	*const *_nc_boolnames(void)
1376262639Sdelphij		{ return(*(char **)0); }
1377262639Sdelphij
1378262639Sdelphij#undef _nc_boolfnames
1379262639Sdelphijchar	*const *_nc_boolfnames(void)
1380262639Sdelphij		{ return(*(char **)0); }
1381262639Sdelphij
1382262639Sdelphij#undef _nc_numnames
1383262639Sdelphijchar	*const *_nc_numnames(void)
1384262639Sdelphij		{ return(*(char **)0); }
1385262639Sdelphij
1386262639Sdelphij#undef _nc_numfnames
1387262639Sdelphijchar	*const *_nc_numfnames(void)
1388262639Sdelphij		{ return(*(char **)0); }
1389262639Sdelphij
1390262639Sdelphij#undef _nc_strnames
1391262639Sdelphijchar	*const *_nc_strnames(void)
1392262639Sdelphij		{ return(*(char **)0); }
1393262639Sdelphij
1394262639Sdelphij#undef _nc_strfnames
1395262639Sdelphijchar	*const *_nc_strfnames(void)
1396262639Sdelphij		{ return(*(char **)0); }
1397262639Sdelphij
1398262639Sdelphij/* ./tinfo/obsolete.c */
1399262639Sdelphij
1400262639Sdelphij#undef _nc_set_buffer_sp
1401262639Sdelphijvoid	_nc_set_buffer_sp(
1402262639Sdelphij		SCREEN	*sp, 
1403262639Sdelphij		FILE	*ofp, 
1404262639Sdelphij		int	buffered)
1405262639Sdelphij		{ /* void */ }
1406262639Sdelphij
1407262639Sdelphij#undef _nc_set_buffer
1408262639Sdelphijvoid	_nc_set_buffer(
1409262639Sdelphij		FILE	*ofp, 
1410262639Sdelphij		int	buffered)
1411262639Sdelphij		{ /* void */ }
1412262639Sdelphij
1413262639Sdelphij/* ./tinfo/read_entry.c */
1414262639Sdelphij
1415262639Sdelphij#include <hashed_db.h>
1416262639Sdelphij
1417262639Sdelphij#undef _nc_init_termtype
1418262639Sdelphijvoid	_nc_init_termtype(
1419262639Sdelphij		TERMTYPE *const tp)
1420262639Sdelphij		{ /* void */ }
1421262639Sdelphij
1422262639Sdelphij#undef _nc_read_termtype
1423262639Sdelphijint	_nc_read_termtype(
1424262639Sdelphij		TERMTYPE *ptr, 
1425262639Sdelphij		char	*buffer, 
1426262639Sdelphij		int	limit)
1427262639Sdelphij		{ return(*(int *)0); }
1428262639Sdelphij
1429262639Sdelphij#undef _nc_read_file_entry
1430262639Sdelphijint	_nc_read_file_entry(
1431262639Sdelphij		const char *const filename, 
1432262639Sdelphij		TERMTYPE *ptr)
1433262639Sdelphij		{ return(*(int *)0); }
1434262639Sdelphij
1435262639Sdelphij#undef _nc_read_entry
1436262639Sdelphijint	_nc_read_entry(
1437262639Sdelphij		const char *const name, 
1438262639Sdelphij		char	*const filename, 
1439262639Sdelphij		TERMTYPE *const tp)
1440262639Sdelphij		{ return(*(int *)0); }
1441262639Sdelphij
1442262639Sdelphij/* ./tinfo/read_termcap.c */
1443262639Sdelphij
1444262639Sdelphij#include <sys/types.h>
1445262639Sdelphij
1446262639Sdelphij#undef _nc_read_termcap
1447262639Sdelphijvoid	_nc_read_termcap(void)
1448262639Sdelphij		{ /* void */ }
1449262639Sdelphij
1450262639Sdelphij/* ./tinfo/strings.c */
1451262639Sdelphij
1452262639Sdelphij#undef _nc_str_init
1453262639Sdelphijstring_desc *_nc_str_init(
1454262639Sdelphij		string_desc *dst, 
1455262639Sdelphij		char	*src, 
1456262639Sdelphij		size_t	len)
1457262639Sdelphij		{ return(*(string_desc **)0); }
1458262639Sdelphij
1459262639Sdelphij#undef _nc_str_null
1460262639Sdelphijstring_desc *_nc_str_null(
1461262639Sdelphij		string_desc *dst, 
1462262639Sdelphij		size_t	len)
1463262639Sdelphij		{ return(*(string_desc **)0); }
1464262639Sdelphij
1465262639Sdelphij#undef _nc_str_copy
1466262639Sdelphijstring_desc *_nc_str_copy(
1467262639Sdelphij		string_desc *dst, 
1468262639Sdelphij		string_desc *src)
1469262639Sdelphij		{ return(*(string_desc **)0); }
1470262639Sdelphij
1471262639Sdelphij#undef _nc_safe_strcat
1472262639SdelphijNCURSES_BOOL _nc_safe_strcat(
1473262639Sdelphij		string_desc *dst, 
1474262639Sdelphij		const char *src)
1475262639Sdelphij		{ return(*(NCURSES_BOOL *)0); }
1476262639Sdelphij
1477262639Sdelphij#undef _nc_safe_strcpy
1478262639SdelphijNCURSES_BOOL _nc_safe_strcpy(
1479262639Sdelphij		string_desc *dst, 
1480262639Sdelphij		const char *src)
1481262639Sdelphij		{ return(*(NCURSES_BOOL *)0); }
1482262639Sdelphij
1483262639Sdelphij/* ./trace/trace_buf.c */
1484262639Sdelphij
1485262639Sdelphij#undef _nc_trace_buf
1486262639Sdelphijchar	*_nc_trace_buf(
1487262639Sdelphij		int	bufnum, 
1488262639Sdelphij		size_t	want)
1489262639Sdelphij		{ return(*(char **)0); }
1490262639Sdelphij
1491262639Sdelphij#undef _nc_trace_bufcat
1492262639Sdelphijchar	*_nc_trace_bufcat(
1493262639Sdelphij		int	bufnum, 
1494262639Sdelphij		const char *value)
1495262639Sdelphij		{ return(*(char **)0); }
1496262639Sdelphij
1497262639Sdelphij/* ./trace/trace_tries.c */
1498262639Sdelphij
1499262639Sdelphij#undef _nc_trace_tries
1500262639Sdelphijvoid	_nc_trace_tries(
1501262639Sdelphij		TRIES	*tree)
1502262639Sdelphij		{ /* void */ }
1503262639Sdelphij
1504262639Sdelphij/* ./base/tries.c */
1505262639Sdelphij
1506262639Sdelphij#undef _nc_expand_try
1507262639Sdelphijchar	*_nc_expand_try(
1508262639Sdelphij		TRIES	*tree, 
1509262639Sdelphij		unsigned code, 
1510262639Sdelphij		int	*count, 
1511262639Sdelphij		size_t	len)
1512262639Sdelphij		{ return(*(char **)0); }
1513262639Sdelphij
1514262639Sdelphij#undef _nc_remove_key
1515262639Sdelphijint	_nc_remove_key(
1516262639Sdelphij		TRIES	**tree, 
1517262639Sdelphij		unsigned code)
1518262639Sdelphij		{ return(*(int *)0); }
1519262639Sdelphij
1520262639Sdelphij#undef _nc_remove_string
1521262639Sdelphijint	_nc_remove_string(
1522262639Sdelphij		TRIES	**tree, 
1523262639Sdelphij		const char *string)
1524262639Sdelphij		{ return(*(int *)0); }
1525262639Sdelphij
1526262639Sdelphij/* ./tinfo/trim_sgr0.c */
1527262639Sdelphij
1528262639Sdelphij#undef _nc_trim_sgr0
1529262639Sdelphijchar	*_nc_trim_sgr0(
1530262639Sdelphij		TERMTYPE *tp)
1531262639Sdelphij		{ return(*(char **)0); }
1532262639Sdelphij
1533262639Sdelphij/* ./unctrl.c */
1534262639Sdelphij
1535262639Sdelphij#undef unctrl_sp
1536262639Sdelphijchar	*unctrl_sp(
1537262639Sdelphij		SCREEN	*sp, 
1538262639Sdelphij		chtype	ch)
1539262639Sdelphij		{ return(*(char **)0); }
1540262639Sdelphij
1541262639Sdelphij#undef unctrl
1542262639Sdelphijchar	*unctrl(
1543262639Sdelphij		chtype	ch)
1544262639Sdelphij		{ return(*(char **)0); }
1545262639Sdelphij
1546262639Sdelphij/* ./trace/visbuf.c */
1547262639Sdelphij
1548262639Sdelphij#undef _nc_visbuf2
1549262639Sdelphijconst char *_nc_visbuf2(
1550262639Sdelphij		int	bufnum, 
1551262639Sdelphij		const char *buf)
1552262639Sdelphij		{ return(*(const char **)0); }
1553262639Sdelphij
1554262639Sdelphij#undef _nc_visbuf
1555262639Sdelphijconst char *_nc_visbuf(
1556262639Sdelphij		const char *buf)
1557262639Sdelphij		{ return(*(const char **)0); }
1558262639Sdelphij
1559262639Sdelphij#undef _nc_visbufn
1560262639Sdelphijconst char *_nc_visbufn(
1561262639Sdelphij		const char *buf, 
1562262639Sdelphij		int	len)
1563262639Sdelphij		{ return(*(const char **)0); }
1564262639Sdelphij
1565262639Sdelphij#undef _nc_viswbuf2
1566262639Sdelphijconst char *_nc_viswbuf2(
1567262639Sdelphij		int	bufnum, 
1568262639Sdelphij		const wchar_t *buf)
1569262639Sdelphij		{ return(*(const char **)0); }
1570262639Sdelphij
1571262639Sdelphij#undef _nc_viswbuf
1572262639Sdelphijconst char *_nc_viswbuf(
1573262639Sdelphij		const wchar_t *buf)
1574262639Sdelphij		{ return(*(const char **)0); }
1575262639Sdelphij
1576262639Sdelphij#undef _nc_viswbufn
1577262639Sdelphijconst char *_nc_viswbufn(
1578262639Sdelphij		const wchar_t *buf, 
1579262639Sdelphij		int	len)
1580262639Sdelphij		{ return(*(const char **)0); }
1581262639Sdelphij
1582262639Sdelphij#undef _nc_viswibuf
1583262639Sdelphijconst char *_nc_viswibuf(
1584262639Sdelphij		const wint_t *buf)
1585262639Sdelphij		{ return(*(const char **)0); }
1586262639Sdelphij
1587262639Sdelphij#undef _nc_viscbuf2
1588262639Sdelphijconst char *_nc_viscbuf2(
1589262639Sdelphij		int	bufnum, 
1590262639Sdelphij		const cchar_t *buf, 
1591262639Sdelphij		int	len)
1592262639Sdelphij		{ return(*(const char **)0); }
1593262639Sdelphij
1594262639Sdelphij#undef _nc_viscbuf
1595262639Sdelphijconst char *_nc_viscbuf(
1596262639Sdelphij		const cchar_t *buf, 
1597262639Sdelphij		int	len)
1598262639Sdelphij		{ return(*(const char **)0); }
1599262639Sdelphij
1600262639Sdelphij/* ./base/define_key.c */
1601262639Sdelphij
1602262639Sdelphij#undef define_key_sp
1603262639Sdelphijint	define_key_sp(
1604262639Sdelphij		SCREEN	*sp, 
1605262639Sdelphij		const char *str, 
1606262639Sdelphij		int	keycode)
1607262639Sdelphij		{ return(*(int *)0); }
1608262639Sdelphij
1609262639Sdelphij#undef define_key
1610262639Sdelphijint	define_key(
1611262639Sdelphij		const char *str, 
1612262639Sdelphij		int	keycode)
1613262639Sdelphij		{ return(*(int *)0); }
1614262639Sdelphij
1615262639Sdelphij/* ./tinfo/hashed_db.c */
1616262639Sdelphij
1617262639Sdelphij#undef _nc_hashed_db
1618262639Sdelphijvoid	_nc_hashed_db(void)
1619262639Sdelphij		{ /* void */ }
1620262639Sdelphij
1621262639Sdelphij/* ./base/key_defined.c */
1622262639Sdelphij
1623262639Sdelphij#undef key_defined_sp
1624262639Sdelphijint	key_defined_sp(
1625262639Sdelphij		SCREEN	*sp, 
1626262639Sdelphij		const char *str)
1627262639Sdelphij		{ return(*(int *)0); }
1628262639Sdelphij
1629262639Sdelphij#undef key_defined
1630262639Sdelphijint	key_defined(
1631262639Sdelphij		const char *str)
1632262639Sdelphij		{ return(*(int *)0); }
1633262639Sdelphij
1634262639Sdelphij/* ./base/keybound.c */
1635262639Sdelphij
1636262639Sdelphij#undef keybound_sp
1637262639Sdelphijchar	*keybound_sp(
1638262639Sdelphij		SCREEN	*sp, 
1639262639Sdelphij		int	code, 
1640262639Sdelphij		int	count)
1641262639Sdelphij		{ return(*(char **)0); }
1642262639Sdelphij
1643262639Sdelphij#undef keybound
1644262639Sdelphijchar	*keybound(
1645262639Sdelphij		int	code, 
1646262639Sdelphij		int	count)
1647262639Sdelphij		{ return(*(char **)0); }
1648262639Sdelphij
1649262639Sdelphij/* ./base/keyok.c */
1650262639Sdelphij
1651262639Sdelphij#undef keyok_sp
1652262639Sdelphijint	keyok_sp(
1653262639Sdelphij		SCREEN	*sp, 
1654262639Sdelphij		int	c, 
1655262639Sdelphij		NCURSES_BOOL flag)
1656262639Sdelphij		{ return(*(int *)0); }
1657262639Sdelphij
1658262639Sdelphij#undef keyok
1659262639Sdelphijint	keyok(
1660262639Sdelphij		int	c, 
1661262639Sdelphij		NCURSES_BOOL flag)
1662262639Sdelphij		{ return(*(int *)0); }
1663262639Sdelphij
1664262639Sdelphij/* ./base/version.c */
1665262639Sdelphij
1666262639Sdelphij#undef curses_version
1667262639Sdelphijconst char *curses_version(void)
1668262639Sdelphij		{ return(*(const char **)0); }
1669