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


Ignore:
Timestamp:
07/08/2017 01:00:47 PM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
dfe4288
Parents:
72d4545
Message:

varargs.h -> stdarg.h.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcio/fprintf.c

    r72d4545 rbfc0072  
    88#include "stdio.h"
    99#include "stddefs.h"
    10 #include "varargs.h"
     10#include "stdarg.h"
    1111
    1212static FILE *Stream;
     
    1717static  int     fpsub();
    1818
    19 int
    20 fprintf(stream, fmt, va_alist)
    21 FILE *stream;
    22 char *fmt;
    23 va_dcl
     19int fprintf(FILE *stream, char *fmt, ...)
    2420{
    2521        register int count;
     
    2723
    2824        Stream = stream;
    29         va_start(aptr);
     25        va_start(aptr, fmt);
    3026        count = _dofmt(fpsub, fmt, aptr);
    3127        va_end(aptr);
Note: See TracChangeset for help on using the changeset viewer.