Changeset 7258c6a in buchla-68k for libcio/fprintf.c
- Timestamp:
- 07/09/2017 04:45:34 PM (7 years ago)
- Branches:
- master
- Children:
- 8618599
- Parents:
- 0292fbb
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcio/fprintf.c
r0292fbb r7258c6a 12 12 static FILE *Stream; 13 13 14 extern long dofmt_(int (*putsub)(), char*format, va_list args);15 extern int aputc(int c, FILE *ptr);14 extern int32_t dofmt_(int16_t (*putsub)(), int8_t *format, va_list args); 15 extern int16_t aputc(int16_t c, FILE *ptr); 16 16 17 static int fpsub(int c);17 static int16_t fpsub(int16_t c); 18 18 19 int fprintf(FILE *stream, char*fmt, ...)19 int16_t fprintf(FILE *stream, int8_t *fmt, ...) 20 20 { 21 register int count;21 register int16_t count; 22 22 va_list aptr; 23 23 … … 29 29 } 30 30 31 static int fpsub(int c)31 static int16_t fpsub(int16_t c) 32 32 { 33 33 return(aputc(c, Stream));
Note:
See TracChangeset
for help on using the changeset viewer.