Version:
~ [ 0.6-2.3.46 ] ~
Architecture:
~ [ um ] ~
** Warning: Cannot open xref database.
1 #include <unistd.h>
2 #include <sys/stat.h>
3 #include <sys/fcntl.h>
4
5 extern void panic(char *fmt, ...);
6
7 int open_fhd_fs(char *file)
8 {
9 return(open(file, O_RDWR, 0));
10 }
11
12 int lseek_fhd_fs(int fd, int offset)
13 {
14 return(lseek(fd, offset, SEEK_SET));
15 }
16
17 int read_fhd_fs(int fd, char *buffer, int len)
18 {
19 return(read(fd, buffer, len));
20 }
21
22 int write_fhd_fs(int fd, char *buffer, int len)
23 {
24 return(write(fd, buffer, len));
25 }
26
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.