mirror of
https://github.com/ioacademy-jikim/device_driver
synced 2025-06-07 16:06:08 +00:00
10 lines
105 B
C
10 lines
105 B
C
#include <fcntl.h>
|
|
int main()
|
|
{
|
|
int fd;
|
|
fd = open( "/dev/mydev", O_RDONLY );
|
|
close(fd);
|
|
return 0;
|
|
}
|
|
|