6 lines
86 B
C
6 lines
86 B
C
#pragma once
|
|
|
|
#ifndef makedev
|
|
#define makedev(maj, min) (((maj) << 8) + (min))
|
|
#endif
|