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