Files
Arquivotheca.SunOS-4.1.4/usr.lib/libsunwindow/notify/sys_read.c
seta75D ff309bfe1c Init
2021-10-11 18:37:13 -03:00

27 lines
401 B
C

#ifndef lint
#ifdef sccs
static char sccsid[] = "@(#)sys_read.c 1.1 94/10/31 Copyr 1985 Sun Micro";
#endif
#endif
/*
* Copyright (c) 1985 by Sun Microsystems, Inc.
*/
/*
* Sys_read.c - Real system call to read.
*/
#include <syscall.h>
#include <sunwindow/ntfy.h>
pkg_private int
notify_read(fd, buf, nbytes)
int fd;
char *buf;
int nbytes;
{
return(syscall(SYS_read, fd, buf, nbytes));
}