Changeset 7d0d347 in buchla-68k for libsm


Ignore:
Timestamp:
07/15/2017 12:09:31 PM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
8973acd
Parents:
d18a473
Message:

Prefer signed integers in libsm.

Location:
libsm
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • libsm/strfill.c

    rd18a473 r7d0d347  
    1515#include "ram.h"
    1616
    17 int8_t *strfill(int8_t *s, int8_t c, uint16_t n)
     17int8_t *strfill(int8_t *s, int8_t c, int16_t n)
    1818{
    19         register uint16_t i;
     19        register int16_t i;
    2020        int8_t *p;
    2121
  • libsm/strfill.x

    rd18a473 r7d0d347  
    1515*/
    1616
    17 extern  int8_t          *strfill(int8_t *s, int8_t c, uint16_t n);
     17extern  int8_t          *strfill(int8_t *s, int8_t c, int16_t n);
Note: See TracChangeset for help on using the changeset viewer.