Changeset bfc0072 in buchla-68k for libcio/fprintf.c
- Timestamp:
- 07/08/2017 01:00:47 PM (7 years ago)
- Branches:
- master
- Children:
- dfe4288
- Parents:
- 72d4545
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcio/fprintf.c
r72d4545 rbfc0072 8 8 #include "stdio.h" 9 9 #include "stddefs.h" 10 #include " varargs.h"10 #include "stdarg.h" 11 11 12 12 static FILE *Stream; … … 17 17 static int fpsub(); 18 18 19 int 20 fprintf(stream, fmt, va_alist) 21 FILE *stream; 22 char *fmt; 23 va_dcl 19 int fprintf(FILE *stream, char *fmt, ...) 24 20 { 25 21 register int count; … … 27 23 28 24 Stream = stream; 29 va_start(aptr );25 va_start(aptr, fmt); 30 26 count = _dofmt(fpsub, fmt, aptr); 31 27 va_end(aptr);
Note:
See TracChangeset
for help on using the changeset viewer.