blob: 4122962e18fb49d07e2a4e47f9480823c4158072 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
$NetBSD: patch-dr,v 1.1 2001/12/20 09:20:08 tron 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,6 +15,7 @@
* not already in the middle of it.
*/
+#include <sys/param.h>
#include <xview_private/ntfy.h>
#include <xview_private/ndet.h>
#include <xview_private/ndis.h> /* For ndis_client == NTFY_CLIENT_NULL check */
@@ -29,11 +30,16 @@
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;
|