- Timestamp:
- 01/15/96 21:50:28 (28 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- a625ccd
- Parents:
- 5c491aef
- Location:
- tools/build
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
tools/build/cklength.c
r5c491aef rc64e4ed4 11 11 * 12 12 * $Id$ 13 * $Log$14 * Revision 1.4 1995/10/06 20:00:38 joel15 * SPARC merged and successfully tested w/o interrupt support16 *17 * Revision 1.3 1995/10/06 16:32:20 joel18 * moved to new development machine and went to gcc 2.7.019 *20 * Revision 1.2 1995/05/31 16:44:26 joel21 * fixing revision22 *23 * Revision 1.1.1.1 1995/05/11 17:35:11 joel24 * Release 3.1.1525 *26 13 */ 27 14 … … 275 262 if (error_flag & ERR_FATAL) 276 263 { 277 error(0, local_errno ? "fatal error, exiting" : "exiting");278 exit(local_errno );264 error(0, "fatal error, exiting"); 265 exit(local_errno ? local_errno : 1); 279 266 } 280 267 else -
tools/build/eolstrip.c
r5c491aef rc64e4ed4 9 9 * 10 10 * $Id$ 11 * $Log$12 * Revision 1.4 1995/10/06 20:00:39 joel13 * SPARC merged and successfully tested w/o interrupt support14 *15 * Revision 1.3 1995/10/06 16:32:21 joel16 * moved to new development machine and went to gcc 2.7.017 *18 * Revision 1.2 1995/05/31 16:44:28 joel19 * fixing revision20 *21 * Revision 1.1.1.1 1995/05/11 17:35:12 joel22 * Release 3.1.1523 *24 11 */ 25 12 … … 262 249 if (error_flag & ERR_FATAL) 263 250 { 264 error(0, local_errno ? "fatal error, exiting" : "exiting");265 exit(local_errno );251 error(0, "fatal error, exiting"); 252 exit(local_errno ? local_errno : 1); 266 253 } 267 254 else -
tools/build/src/cklength.c
r5c491aef rc64e4ed4 11 11 * 12 12 * $Id$ 13 * $Log$14 * Revision 1.4 1995/10/06 20:00:38 joel15 * SPARC merged and successfully tested w/o interrupt support16 *17 * Revision 1.3 1995/10/06 16:32:20 joel18 * moved to new development machine and went to gcc 2.7.019 *20 * Revision 1.2 1995/05/31 16:44:26 joel21 * fixing revision22 *23 * Revision 1.1.1.1 1995/05/11 17:35:11 joel24 * Release 3.1.1525 *26 13 */ 27 14 … … 275 262 if (error_flag & ERR_FATAL) 276 263 { 277 error(0, local_errno ? "fatal error, exiting" : "exiting");278 exit(local_errno );264 error(0, "fatal error, exiting"); 265 exit(local_errno ? local_errno : 1); 279 266 } 280 267 else -
tools/build/src/eolstrip.c
r5c491aef rc64e4ed4 9 9 * 10 10 * $Id$ 11 * $Log$12 * Revision 1.4 1995/10/06 20:00:39 joel13 * SPARC merged and successfully tested w/o interrupt support14 *15 * Revision 1.3 1995/10/06 16:32:21 joel16 * moved to new development machine and went to gcc 2.7.017 *18 * Revision 1.2 1995/05/31 16:44:28 joel19 * fixing revision20 *21 * Revision 1.1.1.1 1995/05/11 17:35:12 joel22 * Release 3.1.1523 *24 11 */ 25 12 … … 262 249 if (error_flag & ERR_FATAL) 263 250 { 264 error(0, local_errno ? "fatal error, exiting" : "exiting");265 exit(local_errno );251 error(0, "fatal error, exiting"); 252 exit(local_errno ? local_errno : 1); 266 253 } 267 254 else -
tools/build/src/unhex.c
r5c491aef rc64e4ed4 709 709 if (error_flag & ERR_FATAL) 710 710 { 711 error(0, local_errno ? "fatal error, exiting" : "exiting");712 exit(local_errno );711 error(0, "fatal error, exiting"); 712 exit(local_errno ? local_errno : 1); 713 713 } 714 714 else -
tools/build/unhex.c
r5c491aef rc64e4ed4 709 709 if (error_flag & ERR_FATAL) 710 710 { 711 error(0, local_errno ? "fatal error, exiting" : "exiting");712 exit(local_errno );711 error(0, "fatal error, exiting"); 712 exit(local_errno ? local_errno : 1); 713 713 } 714 714 else
Note: See TracChangeset
for help on using the changeset viewer.