Changeset bf89cfb in buchla-68k for libsm


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.

Location:
libsm
Files:
4 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)
  • libsm/memset.x

    r09d1345 rbf89cfb  
    1515*/
    1616
    17 extern  void            *memset(void *vp, int8_t c, int16_t n);
     17extern  void            *memset(void *vp, uint8_t c, int16_t n);
  • libsm/memsetw.c

    r09d1345 rbf89cfb  
    1111#include "ram.h"
    1212
    13 void *memsetw(void *vp, int16_t s, int16_t n)
     13void *memsetw(void *vp, uint16_t s, int16_t n)
    1414{
    15         int16_t *sp = vp;
     15        uint16_t *sp = vp;
    1616
    1717        while (--n >= 0)
  • libsm/memsetw.x

    r09d1345 rbf89cfb  
    1515*/
    1616
    17 extern  void            *memsetw(void *vp, int16_t s, int16_t n);
     17extern  void            *memsetw(void *vp, uint16_t s, int16_t n);
Note: See TracChangeset for help on using the changeset viewer.