Changeset bf89cfb in buchla-68k for libsm/memset.c


Ignore:
Timestamp:
07/15/2017 11:15:58 AM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
c80943f
Parents:
09d1345
Message:

No more warnings in vlib.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libsm/memset.c

    r09d1345 rbf89cfb  
    1111#include "ram.h"
    1212
    13 void *memset(void *vp, int8_t c, int16_t n)
     13void *memset(void *vp, uint8_t c, int16_t n)
    1414{
    15         int8_t *cp = vp;
     15        uint8_t *cp = vp;
    1616
    1717        while (--n >= 0)
Note: See TracChangeset for help on using the changeset viewer.