File: ls.h

package info (click to toggle)
genparse 0.9.2-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster, stretch
  • size: 3,372 kB
  • ctags: 2,722
  • sloc: ansic: 8,795; cpp: 6,060; sh: 5,336; java: 578; yacc: 482; lex: 315; makefile: 310
file content (10 lines) | stat: -rw-r--r-- 212 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
/* Exit statuses.  */
enum
  {
    /* "ls" had a minor problem (e.g., it could not stat a directory
       entry).  */
    LS_MINOR_PROBLEM = 1,

    /* "ls" had more serious trouble.  */
    LS_FAILURE = 2
  };