aboutsummaryrefslogtreecommitdiff
path: root/lib/sys/read.h
blob: 7dba6e79352038928b3794085123d318bf151e70 (plain)
1
2
3
4
5
6
7
8
9
#ifndef READ_H
#define READ_H
#include "syscalls.h"

static int read(unsigned int fd, char * buf, unsigned long count) {
	return syscall(READ, fd, buf, count, 0, 0);
}

#endif