Changeset 5f714c9 in buchla-68k
- Timestamp:
- 07/08/2017 11:07:54 AM (7 years ago)
- Branches:
- master
- Children:
- 72d4545
- Parents:
- ee49131
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
libcio/filname.c
ree49131 r5f714c9 142 142 fnt(fn[i]); 143 143 144 exit( 0);144 exit(); 145 145 } 146 146 -
prolog/croot.c
ree49131 r5f714c9 48 48 /* 49 49 ============================================================================ 50 exit( code) -- return control to the BIOS50 exit() -- return control to the BIOS 51 51 ============================================================================ 52 52 */ … … 77 77 strcat(buff, "\n"); 78 78 write(2, buff, strlen(buff)); 79 exit( EINVAL);79 exit(); 80 80 } 81 81 … … 161 161 162 162 main(Argc,Argv); /* call application */ 163 exit( 0);/* exit in case the application didn't */163 exit(); /* exit in case the application didn't */ 164 164 }
Note:
See TracChangeset
for help on using the changeset viewer.