Changeset 7258c6a in buchla-68k for ram/rscript.c


Ignore:
Timestamp:
07/09/2017 04:45:34 PM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
8618599
Parents:
0292fbb
Message:

Use standard integer types.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ram/rscript.c

    r0292fbb r7258c6a  
    66*/
    77
    8 extern  int     sqscan(char *ip);
     8extern  int16_t sqscan(int8_t *ip);
    99
    10 extern  short   endflg;
     10extern  int16_t endflg;
    1111
    12 char    *script0[] = {          /* initialization score selection string */
     12int8_t  *script0[] = {          /* initialization score selection string */
    1313
    1414        "!quiet !normal !score=0 !weight=60 !end",
    15         (char *)0L
     15        (int8_t *)0L
    1616};
    1717
     
    2626*/
    2727
    28 short rscript(char *p[])
     28int16_t rscript(int8_t *p[])
    2929{
    30         short rc;
     30        int16_t rc;
    3131
    3232        sqinit();               /* initialize the score string interpreter */
Note: See TracChangeset for help on using the changeset viewer.