Skip to content

Instantly share code, notes, and snippets.

@stesla
Created October 4, 2010 18:31
Show Gist options
  • Save stesla/610202 to your computer and use it in GitHub Desktop.
Save stesla/610202 to your computer and use it in GitHub Desktop.
#define MAJOR(dev) ((dev)>>8)
#define MINOR(dev) ((dev) & 0xff)
#define MKDEV(ma,mi) ((ma)<<8 | (mi))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment