Lines Matching defs:echo
33 # use of echo in this script is broken
35 # some echo versions will expand \n in the args, which breaks C
39 # Fortunately, use of echo here is also trivially simplistic,
42 echo()
48 # rather than echo to output anything at all... then
170 echo "/*"
171 echo " * This file was generated by the mkinit program."
172 echo " */"
173 echo
177 echo "#include $f"
180 echo
181 echo
182 echo
183 echo "$defines"
184 echo
185 echo "$decles"
186 echo
187 echo
188 echo "/*"
189 echo " * Initialization code."
190 echo " */"
191 echo
192 echo "void"
193 echo "init(void)"
194 echo "{"
195 echo "${event_init}"
196 echo "}"
197 echo
198 echo
199 echo
200 echo "/*"
201 echo " * This routine is called when an error or an interrupt occurs in an"
202 echo " * interactive shell and control is returned to the main command loop."
203 echo " */"
204 echo
205 echo "void"
206 echo "reset(void)"
207 echo "{"
208 echo "${event_reset}"
209 echo "}"
210 echo
211 echo
212 echo
213 echo "/*"
214 echo " * This routine is called to initialize the shell to run a shell procedure."
215 echo " */"
216 echo
217 echo "void"
218 echo "initshellproc(void)"
219 echo "{"
220 echo "${event_shellproc}"
221 echo "}"