1/*
2 * $Id: demo_panels.c,v 1.1 2003/04/26 22:11:23 tom Exp $
3 *
4 * Demonstrate a variety of functions from the panel library.
5 * Thomas Dickey - 2003/4/26
6 */
7/*
8panel_above			-
9panel_below			-
10panel_hidden			-
11replace_panel			-
12*/
13
14#include <test.priv.h>
15
16#if USE_LIBPANEL
17
18#include <panel.h>
19
20int
21main(int argc GCC_UNUSED, char *argv[]GCC_UNUSED)
22{
23    printf("Not implemented - demo for panel library\n");
24    return EXIT_SUCCESS;
25}
26#else
27int
28main(void)
29{
30    printf("This program requires the curses panel library\n");
31    ExitProgram(EXIT_FAILURE);
32}
33#endif
34