Deleted Added
full compact
options.h (6081) options.h (6290)
1/*
2 * Macros for processing command arguments.
3 *
4 * Conforms closely to the command option requirements of intro(1) in System V
5 * and intro(C) in Xenix.
6 *
7 * A command consists of: cmdname [ options ] [ cmdarguments ]
8 *

--- 120 unchanged lines hidden (view full) ---

129 O_cont = 0;
130
131#define ENDOPTS \
132 break; \
133 default: \
134 usage(); \
135 } \
136 } \
1/*
2 * Macros for processing command arguments.
3 *
4 * Conforms closely to the command option requirements of intro(1) in System V
5 * and intro(C) in Xenix.
6 *
7 * A command consists of: cmdname [ options ] [ cmdarguments ]
8 *

--- 120 unchanged lines hidden (view full) ---

129 O_cont = 0;
130
131#define ENDOPTS \
132 break; \
133 default: \
134 usage(); \
135 } \
136 } \
137O_end: \
138 *--argv = O_name; \
139 }
137 *--argv = O_name; \
138 }