Skip to content

Commit e95dcf6

Browse files
committed
Added printdebug.c file (dummy for now)
1 parent d646087 commit e95dcf6

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ BCBACK = outbc.c bcbuffers.c bcir.c bc_spin1.c
134134
NUBACK = outnu.c nuir.c nupeep.c
135135
CPPBACK = outcpp.c cppfunc.c outgas.c cppexpr.c cppbuiltin.c
136136
ZIPBACK = outzip.c zip.c
137-
SPINSRCS = common.c case.c spinc.c $(LEXSRCS) functions.c cse.c loops.c hloptimize.c hltransform.c types.c pasm.c outdat.c outlst.c outobj.c spinlang.c basiclang.c clang.c $(PASMBACK) $(BCBACK) $(NUBACK) $(CPPBACK) $(ZIPBACK) $(MCPP) version.c becommon.c brkdebug.c
137+
SPINSRCS = common.c case.c spinc.c $(LEXSRCS) functions.c cse.c loops.c hloptimize.c hltransform.c types.c pasm.c outdat.c outlst.c outobj.c spinlang.c basiclang.c clang.c $(PASMBACK) $(BCBACK) $(NUBACK) $(CPPBACK) $(ZIPBACK) $(MCPP) version.c becommon.c brkdebug.c printdebug.c
138138

139139
LEXOBJS = $(LEXSRCS:%.c=$(BUILD)/%.o)
140140
SPINOBJS = $(SPINSRCS:%.c=$(BUILD)/%.o)

frontends/printdebug.c

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
/*
2+
* Printf based debug code
3+
* Copyright (c) 2011-2023 Total Spectrum Software Inc.
4+
* See the file COPYING for terms of use.
5+
*/
6+
#include <stdio.h>
7+
#include <stdlib.h>
8+
#include <ctype.h>
9+
#include "spinc.h"
10+

0 commit comments

Comments
 (0)