1
0
mirror of https://github.com/ioacademy-jikim/device_driver synced 2025-06-07 07:56:08 +00:00
ioacademy-jikim e92d98c6d0 first sample
2015-08-19 19:26:23 +09:00

11 lines
162 B
C

#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
int main()
{
mknod("mydev", S_IFCHR | 0666, (200<<8) | 0 );
return 0;
}