1
0
mirror of https://github.com/cc65/cc65.git synced 2024-10-02 06:56:39 +00:00

Added debugging output

git-svn-id: svn://svn.cc65.org/cc65/trunk@2189 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2003-06-03 07:25:49 +00:00
parent f87cc5d0f7
commit 98da4b5811

View File

@ -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);
}