Consistently use int for sector and unit uid parameters

This commit is contained in:
Markus Armbruster 2009-12-30 12:44:01 +01:00
parent c0ed527311
commit d8c940ec2c
4 changed files with 10 additions and 10 deletions

View file

@ -56,8 +56,8 @@ struct loststr {
/* src/lib/subs/lostsub.c */
extern void lost_and_found(int, natid, natid, int, coord, coord);
extern void makelost(int, natid, short, coord, coord);
extern void makenotlost(int, natid, short, coord, coord);
extern void makelost(int, natid, int, coord, coord);
extern void makenotlost(int, natid, int, coord, coord);
extern void delete_old_lostitems(void);
#endif