Fix warnings.
This commit is contained in:
parent
9d8ea79c7f
commit
67a9be26d1
|
@ -4,18 +4,13 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#ifndef NORCSID
|
||||
static char rcsid[] = "$Id$";
|
||||
#endif
|
||||
|
||||
/*
|
||||
* machine dependent back end routines for the Intel 8080.
|
||||
*/
|
||||
|
||||
#include <stdlib.h> /* atol */
|
||||
|
||||
void con_part(sz, w) register sz;
|
||||
word w;
|
||||
void con_part(int sz, word w)
|
||||
{
|
||||
|
||||
while (part_size % sz)
|
||||
|
|
|
@ -34,7 +34,7 @@ int nstab=0;
|
|||
|
||||
static void chkstr(string, char *);
|
||||
|
||||
string myalloc(size) {
|
||||
string myalloc(int size) {
|
||||
string p;
|
||||
|
||||
p = (string) calloc((unsigned)size, 1);
|
||||
|
|
|
@ -44,6 +44,7 @@ void in_init(char *);
|
|||
void in_start(void);
|
||||
void fillemlines(void);
|
||||
void swtxt(void);
|
||||
void dopseudo(void);
|
||||
/* gencode.c */
|
||||
void out_init(char *);
|
||||
void out_finish(void);
|
||||
|
|
Loading…
Reference in a new issue