ecc16c8d3a
I'm not sure whether we should install teken as a library on any stock FreeBSD installation, but I can imagine people want to tinker around with it now and then. Create a /sys/teken/libteken, which holds a Makefile to install a shared library version of the terminal emulator, complete with a manpage. Also add Makefiles for the demo/stress applications, to build it against the shared library.
22 lines
320 B
Plaintext
22 lines
320 B
Plaintext
/*
|
|
* $FreeBSD$
|
|
*/
|
|
|
|
FBSD_1.2 {
|
|
teken_256to8;
|
|
teken_get_curattr;
|
|
teken_get_cursor;
|
|
teken_get_defattr;
|
|
teken_get_defattr_cons25;
|
|
teken_get_sequence;
|
|
teken_get_winsize;
|
|
teken_init;
|
|
teken_input;
|
|
teken_set_8bit;
|
|
teken_set_cons25;
|
|
teken_set_curattr;
|
|
teken_set_cursor;
|
|
teken_set_defattr;
|
|
teken_set_winsize;
|
|
};
|