Skip to content
Snippets Groups Projects
Unverified Commit 3d8197ec authored by Yuki Okushi's avatar Yuki Okushi
Browse files

Update links

parent 80a2f9cb
No related branches found
No related tags found
Loading
......@@ -1696,7 +1696,7 @@ f! {
pub fn major(dev: ::dev_t) -> ::c_uint {
// see
// https://github.com/kripken/emscripten/blob/
// https://github.com/emscripten-core/emscripten/blob/
// master/system/include/libc/sys/sysmacros.h
let mut major = 0;
major |= (dev & 0x00000fff) >> 8;
......@@ -1706,7 +1706,7 @@ f! {
pub fn minor(dev: ::dev_t) -> ::c_uint {
// see
// https://github.com/kripken/emscripten/blob/
// https://github.com/emscripten-core/emscripten/blob/
// master/system/include/libc/sys/sysmacros.h
let mut minor = 0;
minor |= (dev & 0x000000ff) >> 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment