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

    r46d8069 r0580615  
    1111#define EATCHAR '\n'    /* character to be "eaten" on input */
    1212
    13 int
    14 agetc(ptr)
    15 register FILE *ptr;
     13int agetc(FILE *ptr)
    1614{
    1715        register int c;
     
    3533}
    3634
    37 char *
    38 gets(line)
    39 char *line;
     35char *gets(char *line)
    4036{
    4137        register char *cp;
     
    5551}
    5652
    57 char *
    58 fgets(s, n, fp)
    59 char *s;
    60 int n;
    61 FILE *fp;
     53char *fgets(char *s, int n, FILE *fp)
    6254{
    6355        register int c;
Note: See TracChangeset for help on using the changeset viewer.