From: Jeff D. <jd...@ka...> - 2000-03-21 17:15:14
|
> In the CVS: > - open_vt() from stdio_console_user.c conflicts with its prototype > and calling place. I just checked this out and I don't see a problem: This is the declaration: extern int open_vt(int n, int *pid_out); This is the call: static struct vt { int fd; int count; int xterm_pid; } vts[MAX_TTYS]; int line; vts[line].fd = open_vt(line, &vts[line].xterm_pid); I grabbed those snippets from the cvs browser: http://cvs.sourceforge.net/cgi-bin/cvsweb.cgi/linux/arch/um/drivers/stdio_conso le.h?rev=1.2&content-type=text/x-cvsweb-markup&cvsroot=user-mode-linux http://cvs.sourceforge.net/cgi-bin/cvsweb.cgi/linux/arch/um/drivers/stdio_cons ole.c?rev=1.6&content-type=text/x-cvsweb-markup&cvsroot=user-mode-linux Jeff |