Fix char / s_char inconsistencies. Build was broken on some systems
since the first one crept in with src/lib/subs/retreat.c rev. 1.34.
This commit is contained in:
parent
2479f47068
commit
ca595ddc3b
1 changed files with 4 additions and 4 deletions
|
@ -524,7 +524,7 @@ extern int air_defense(coord, coord, natid, struct emp_qelem *,
|
||||||
/* move.c */
|
/* move.c */
|
||||||
extern int check_lmines(coord, coord, double);
|
extern int check_lmines(coord, coord, double);
|
||||||
extern int move_ground(struct sctstr *, struct sctstr *,
|
extern int move_ground(struct sctstr *, struct sctstr *,
|
||||||
double, s_char *,
|
double, char *,
|
||||||
int (*)(coord, coord, char *),
|
int (*)(coord, coord, char *),
|
||||||
int, int *);
|
int, int *);
|
||||||
extern int fly_map(coord, coord);
|
extern int fly_map(coord, coord);
|
||||||
|
@ -634,8 +634,8 @@ extern int setrel(natid, natid, int);
|
||||||
extern int setcont(natid, natid, int);
|
extern int setcont(natid, natid, int);
|
||||||
extern int setrej(natid, natid, int, int);
|
extern int setrej(natid, natid, int, int);
|
||||||
/* retreat.c */
|
/* retreat.c */
|
||||||
extern void retreat_ship(struct shpstr *, s_char);
|
extern void retreat_ship(struct shpstr *, char);
|
||||||
extern void retreat_land(struct lndstr *, s_char);
|
extern void retreat_land(struct lndstr *, char);
|
||||||
extern int check_retreat_and_do_shipdamage(struct shpstr *, int);
|
extern int check_retreat_and_do_shipdamage(struct shpstr *, int);
|
||||||
extern int check_retreat_and_do_landdamage(struct lndstr *, int);
|
extern int check_retreat_and_do_landdamage(struct lndstr *, int);
|
||||||
/* sarg.c */
|
/* sarg.c */
|
||||||
|
@ -696,7 +696,7 @@ extern void shp_set_tech(struct shpstr *, int);
|
||||||
/* snxtitem.c */
|
/* snxtitem.c */
|
||||||
extern int snxtitem(struct nstr_item *, int, s_char *);
|
extern int snxtitem(struct nstr_item *, int, s_char *);
|
||||||
/* snxtsct.c */
|
/* snxtsct.c */
|
||||||
extern int snxtsct(register struct nstr_sect *, s_char *);
|
extern int snxtsct(register struct nstr_sect *, char *);
|
||||||
/* supply.c */
|
/* supply.c */
|
||||||
extern void resupply_all(struct lndstr *);
|
extern void resupply_all(struct lndstr *);
|
||||||
extern void resupply_commod(struct lndstr *, i_type);
|
extern void resupply_commod(struct lndstr *, i_type);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue