alec

Abstraction Layer for Escape Codes
git clone git://git.dimitrijedobrota.com/alec.git
Log | Files | Refs | README | LICENSE | HACKING | CONTRIBUTING | CODE_OF_CONDUCT | BUILDING |

commit3bfef0fc60051e24602ae12693f297df63a7ce84
parent14a27ded286897a25bfc24151e5324ef375b127f
authorDimitrije Dobrota <mail@dimitrijedobrota.com>
dateThu, 30 Jan 2025 14:03:25 +0100

Fix multiple definition in debug build

Diffstat:
Msrc/generator.c|+-

1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/src/generator.c b/src/generator.c

@@ -7,7 +7,7 @@

if (!x) yyerror("out of space"), exit(1); \
} while (0);
#ifdef YYDEBUG
#ifndef YYDEBUG
int yydebug = 1;
#endif