blob: 63a050f13806897991891f1b25570a24283fc157 (
plain)
1
2
3
4
5
6
7
8
|
static void
doNewtInit (int *width, int *height)
{
newtInit ();
newtCls ();
newtGetScreenSize (width, height);
newtDrawRootText (0, 0, "Red Hat Linux for S/390 (C) 2001 Red Hat, Inc.");
}
|