Changeset 0580615 in buchla-68k for libcio/fprintf.c


Ignore:
Timestamp:
07/08/2017 02:42:31 PM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
342a56f
Parents:
46d8069
Message:

Point of no return.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcio/fprintf.c

    r46d8069 r0580615  
    1212static FILE *Stream;
    1313
    14 extern  int     dofmt_();
    15 extern  int     aputc();
     14extern  long    dofmt_(int (*putsub)(), char *format, va_list args);
     15extern  int     aputc(int c, FILE *ptr);
    1616
    17 static  int     fpsub();
     17        static int fpsub(int c);
    1818
    1919int fprintf(FILE *stream, char *fmt, ...)
     
    2929}
    3030
    31 static
    32 int
    33 fpsub(c)
    34 int c;
     31static int fpsub(int c)
    3532{
    3633        return(aputc(c, Stream));
Note: See TracChangeset for help on using the changeset viewer.