Skip to content

Commit

Permalink
cpp.ansi, em_m2: include correct prototype for sprint( ).
Browse files Browse the repository at this point in the history
  • Loading branch information
tkchia committed Oct 26, 2024
1 parent da2ba5e commit c396e7c
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 7 deletions.
3 changes: 1 addition & 2 deletions lang/cem/cpp.ansi/preprocess.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,14 @@
#include "error.h"
#include "bits.h"
#include "skip.h"
#include "print.h"

char _obuf[OBUFSIZE];
#ifdef DOBITS
char bits[128];
#endif
extern int InputLevel;

extern char* sprint();

void Xflush(void)
{
sys_write(STDOUT, _obuf, OBUFSIZE);
Expand Down
1 change: 0 additions & 1 deletion lang/m2/comp/enter.c
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ void EnterVarList(struct node *Idlist, struct type *type, int local)
register struct node *idlist = Idlist;
register struct scopelist *sc = CurrVis;
char buf[256];
extern char *sprint();

if (local) {
/* Find the closest enclosing open scope. This
Expand Down
2 changes: 2 additions & 0 deletions lang/m2/comp/f_info.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@

/* $Id$ */

#include "print.h"

struct f_info {
unsigned short f_lineno;
char *f_filename;
Expand Down
1 change: 0 additions & 1 deletion lang/m2/comp/misc.c
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ struct idf *gen_anon_idf(void)
*/
static int name_cnt;
char *s = Malloc(strlen(FileName)+50);
char *sprint();

sprint(s, "#%d in %s, line %u",
++name_cnt, FileName, LineNumber);
Expand Down
1 change: 0 additions & 1 deletion lang/m2/comp/program.g
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,6 @@ DefinitionModule
int dummy;
extern struct idf *DefId;
extern int ForeignFlag;
extern char *sprint();
register struct scope *currscope = CurrentScope;
char buf[512];
} :
Expand Down
2 changes: 1 addition & 1 deletion lang/m2/comp/stab.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@
#include "error.h"
#include "stab.h"
#include "main.h"
#include "print.h"

extern int gdb_flag;

#define INCR_SIZE 64

extern int proclevel;
extern char *sprint();

static struct db_str {
unsigned sz;
Expand Down
2 changes: 2 additions & 0 deletions lang/m2/m2mm/f_info.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@

/* $Id$ */

#include "print.h"

struct f_info {
unsigned short f_lineno;
char *f_fn;
Expand Down
1 change: 0 additions & 1 deletion lang/m2/m2mm/misc.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ gen_anon_idf()
*/
static int name_cnt;
char buff[100];
char *sprint();

sprint(buff, "#%d in %s, line %u",
++name_cnt, FileName, LineNumber);
Expand Down

0 comments on commit c396e7c

Please sign in to comment.