From: cuz Date: Tue, 3 Jun 2003 07:25:49 +0000 (+0000) Subject: Added debugging output X-Git-Tag: V2.12.0~1529 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=98da4b581175232d89630f5c19f22e37a7588c7b;p=cc65 Added debugging output git-svn-id: svn://svn.cc65.org/cc65/trunk@2189 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/src/cc65/input.c b/src/cc65/input.c index cff63bcfc..0f254f492 100644 --- a/src/cc65/input.c +++ b/src/cc65/input.c @@ -42,6 +42,7 @@ /* common */ #include "check.h" #include "coll.h" +#include "print.h" #include "xmalloc.h" /* cc65 */ @@ -259,6 +260,9 @@ void OpenIncludeFile (const char* Name, unsigned DirSpec) return; } + /* Debugging output */ + Print (stdout, 1, "Opened include file `%s'\n", IF->Name); + /* Allocate a new AFile structure */ (void) NewAFile (IF, F); }