mirror of
https://github.com/ioacademy-jikim/device_driver
synced 2025-06-07 07:56:08 +00:00
11 lines
162 B
C
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;
|
|
}
|