Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
at v6.19-rc3 10 lines 111 B view raw
1#ifndef LINUX_DEVICE_H 2 3struct device { 4 void *parent; 5}; 6 7struct device_driver { 8 const char *name; 9}; 10#endif