HAMMER Utilities: Sync with 60F
[dragonfly.git] / contrib / ncurses-5.4 / test / demo_panels.c
blob20fd029c82f5f38d6bb96ff9d2ed0f7e3b24d966
1 /*
2 * $Id: demo_panels.c,v 1.1 2003/04/26 22:11:23 tom Exp $
4 * Demonstrate a variety of functions from the panel library.
5 * Thomas Dickey - 2003/4/26
6 */
7 /*
8 panel_above -
9 panel_below -
10 panel_hidden -
11 replace_panel -
14 #include <test.priv.h>
16 #if USE_LIBPANEL
18 #include <panel.h>
20 int
21 main(int argc GCC_UNUSED, char *argv[]GCC_UNUSED)
23 printf("Not implemented - demo for panel library\n");
24 return EXIT_SUCCESS;
26 #else
27 int
28 main(void)
30 printf("This program requires the curses panel library\n");
31 ExitProgram(EXIT_FAILURE);
33 #endif