Changeset 599d89b in buchla-68k for libcio


Ignore:
Timestamp:
07/09/2017 01:17:57 AM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
002f873
Parents:
6dd74a9
Message:

Missing return values. Missing int declarations.

Location:
libcio
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • libcio/fscanf.c

    r6dd74a9 r599d89b  
    1212static FILE *scnfp;
    1313
    14 static int gchar(what)
     14static int gchar(int what)
    1515{
    1616        if (what EQ 0) {
  • libcio/putc.c

    r6dd74a9 r599d89b  
    164164*/
    165165
    166 int puterr(c)
     166int puterr(int c)
    167167{
    168168        return(putc(c, stderr));
  • libcio/scan.c

    r6dd74a9 r599d89b  
    7777}
    7878
    79 static int sgetc(what)
     79static int sgetc(int what)
    8080{
    8181        if (what EQ 0) {
Note: See TracChangeset for help on using the changeset viewer.