Fix warnings.

This commit is contained in:
David Given 2019-02-07 09:09:31 +01:00
parent 9d8ea79c7f
commit 67a9be26d1
3 changed files with 3 additions and 7 deletions

View file

@ -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)

View file

@ -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);

View file

@ -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);