Changeset ab83141 in buchla-68k
- Timestamp:
- 07/08/2017 01:17:47 PM (7 years ago)
- Branches:
- master
- Children:
- 1127e68
- Parents:
- c6f3870
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
libcio/fprintf.c
rc6f3870 rab83141 12 12 static FILE *Stream; 13 13 14 extern int _dofmt();14 extern int dofmt_(); 15 15 extern int aputc(); 16 16 … … 24 24 Stream = stream; 25 25 va_start(aptr, fmt); 26 count = _dofmt(fpsub, fmt, aptr);26 count = dofmt_(fpsub, fmt, aptr); 27 27 va_end(aptr); 28 28 return(count); -
misc/proto.c
rc6f3870 rab83141 75 75 } 76 76 77 void _dofmt(void)78 {79 }80 81 77 void execins(void) 82 78 {
Note:
See TracChangeset
for help on using the changeset viewer.