diff options
author | Robert Morris <[email protected]> | 2022-08-10 06:00:57 -0400 |
---|---|---|
committer | Robert Morris <[email protected]> | 2022-08-10 06:00:57 -0400 |
commit | 7d573bae2ab70f0d0bd1807f0099c00e8f9e24f2 (patch) | |
tree | 22d29d4a7687dc05ad6785ca46a317848ca269a8 /user | |
parent | f4b3edf5ab211c6dfbb2befb1a4c1b6bd26e4222 (diff) | |
parent | 2462656f215822ffb3bcd854ddc68b3894058c59 (diff) | |
download | xv6-labs-7d573bae2ab70f0d0bd1807f0099c00e8f9e24f2.tar.gz xv6-labs-7d573bae2ab70f0d0bd1807f0099c00e8f9e24f2.tar.bz2 xv6-labs-7d573bae2ab70f0d0bd1807f0099c00e8f9e24f2.zip |
Merge branch 'riscv' of g.csail.mit.edu:xv6-dev into riscv
Diffstat (limited to 'user')
-rw-r--r-- | user/ls.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -42,6 +42,7 @@ ls(char *path) } switch(st.type){ + case T_DEVICE: case T_FILE: printf("%s %d %d %l\n", fmtname(path), st.type, st.ino, st.size); break; |