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

    r46d8069 r0580615  
    1111#include "stddefs.h"
    1212
    13 putw(w, stream)
    14 register unsigned w;
    15 FILE *stream;
     13void putw(unsigned w, FILE *stream)
    1614{
    1715        if (putc(((w >> 8) & 0xFF), stream) < 0 )
Note: See TracChangeset for help on using the changeset viewer.