Changeset 0580615 in buchla-68k for iolib/sprintf.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
  • iolib/sprintf.c

    r46d8069 r0580615  
    88#include "stdarg.h"
    99
    10 extern long     dofmt_();
     10extern  long    dofmt_(int (*putsub)(), char *format, va_list args);
    1111
    1212static char     *buff;
    13 static int      spsub();
     13        static int spsub(char c);
    1414
    1515/*
     
    3838*/
    3939
    40 static
    41 int
    42 spsub(c)
    43 char c;
     40static int spsub(char c)
    4441{
    4542        return((*buff++ = c) & 0xFF);
Note: See TracChangeset for help on using the changeset viewer.