Changeset 0580615 in buchla-68k for libcio/fputs.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/fputs.c

    r46d8069 r0580615  
    99#include "stddefs.h"
    1010
    11 int
    12 puts(str)
    13 register char *str;
     11int puts(char *str)
    1412{
    1513        while (*str)
     
    2018}
    2119
    22 int
    23 aputc(c,ptr)
    24 register int c;
    25 register FILE *ptr;
     20int aputc(int c, FILE *ptr)
    2621{
    2722        c &= 127;
     
    3429}
    3530
    36 int
    37 fputs(s,fp)
    38 register char *s;
    39 FILE *fp;
     31int fputs(char *s, FILE *fp)
    4032{
    4133        while ( *s )
Note: See TracChangeset for help on using the changeset viewer.