File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -134,7 +134,7 @@ BCBACK = outbc.c bcbuffers.c bcir.c bc_spin1.c
134
134
NUBACK = outnu.c nuir.c nupeep.c
135
135
CPPBACK = outcpp.c cppfunc.c outgas.c cppexpr.c cppbuiltin.c
136
136
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
138
138
139
139
LEXOBJS = $(LEXSRCS:%.c=$(BUILD ) /%.o )
140
140
SPINOBJS = $(SPINSRCS:%.c=$(BUILD ) /%.o )
Original file line number Diff line number Diff line change
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
+
You can’t perform that action at this time.
0 commit comments