ref: b0f8d75d1dbabc354aafb56d9a3d37b99e9209c5
dir: /include/asm/main.h/
/* * This file is part of RGBDS. * * Copyright (c) 1997-2021, Carsten Sorensen and RGBDS contributors. * * SPDX-License-Identifier: MIT */ #ifndef RGBDS_MAIN_H #define RGBDS_MAIN_H #include <stdbool.h> #include <stdint.h> #include <stdio.h> #include "helpers.h" extern bool haltnop; extern bool optimizeLoads; extern bool verbose; extern bool warnings; /* True to enable warnings, false to disable them. */ extern FILE *dependfile; extern char *targetFileName; extern bool generatedMissingIncludes; extern bool failedOnMissingInclude; extern bool generatePhonyDeps; /* TODO: are these really needed? */ #define YY_FATAL_ERROR fatalerror #ifdef YYLMAX #undef YYLMAX #endif #define YYLMAX 65536 #endif /* RGBDS_MAIN_H */