$NetBSD: patch-dr,v 1.2 2006/01/05 18:25:57 joerg Exp $ --- lib/libxview/notify/ndet_read.c.orig Tue Jun 29 07:18:04 1993 +++ lib/libxview/notify/ndet_read.c Thu Dec 20 10:09:16 2001 @@ -15,12 +15,12 @@ static char sccsid[] = "@(#)ndet_rea * not already in the middle of it. */ +#include #include #include #include /* For ndis_client == NTFY_CLIENT_NULL check */ #include -extern errno; extern int notify_exclude_fd; static Notify_value ndet_read_in_func(); @@ -29,11 +29,16 @@ static int ndet_read_done; static Notify_client ndet_read_nclient = (Notify_client) & ndet_read_done; +#if !(defined(BSD) && (BSD >= 199103)) extern int read(fd, buf, nbytes) register int fd; char *buf; int nbytes; +#else +extern int +read(int fd, void *buf, size_t nbytes) +#endif { int ndelay; Notify_error return_code;