On Mon, Jan 13, 2003 at 08:12:46AM +0100, Peter Forst wrote > I`ve got an problem, while compiling the dosemu 1.1.4 with patchset1.1.4-3 > > mouse.c: In function `mouse_post_boot': > mouse.c:1924: parse error before `unsigned' > mouse.c:1931: `ptr' undeclared (first use in this function)
It's a known problem. Move "*us ptr;* above the preceding statement. The construct using a declaration after an executable statement is a C99 construct. If you don't use a C99 compliant compiler, you get this error. Reinhard - To unsubscribe from this list: send the line "unsubscribe linux-msdos" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html
