mirror of
https://github.com/cc65/cc65.git
synced 2024-11-18 15:05:14 +00:00
Comment changes
git-svn-id: svn://svn.cc65.org/cc65/trunk@321 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
9e4d68107f
commit
5446245eb4
@ -39,8 +39,10 @@
|
|||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
|
|
||||||
#include "../common/xsprintf.h"
|
/* common */
|
||||||
|
#include "xsprintf.h"
|
||||||
|
|
||||||
|
/* ld65 */
|
||||||
#include "global.h"
|
#include "global.h"
|
||||||
#include "error.h"
|
#include "error.h"
|
||||||
#include "scanner.h"
|
#include "scanner.h"
|
||||||
@ -75,7 +77,7 @@ static FILE* InputFile = 0;
|
|||||||
|
|
||||||
|
|
||||||
/*****************************************************************************/
|
/*****************************************************************************/
|
||||||
/* Error handling */
|
/* Error handling */
|
||||||
/*****************************************************************************/
|
/*****************************************************************************/
|
||||||
|
|
||||||
|
|
||||||
@ -84,7 +86,7 @@ void CfgWarning (const char* Format, ...)
|
|||||||
/* Print a warning message adding file name and line number of the config file */
|
/* Print a warning message adding file name and line number of the config file */
|
||||||
{
|
{
|
||||||
char Buf [512];
|
char Buf [512];
|
||||||
va_list ap;
|
va_list ap;
|
||||||
|
|
||||||
va_start (ap, Format);
|
va_start (ap, Format);
|
||||||
xvsprintf (Buf, sizeof (Buf), Format, ap);
|
xvsprintf (Buf, sizeof (Buf), Format, ap);
|
||||||
|
Loading…
Reference in New Issue
Block a user