1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-30 01:29:37 +00:00

Fixed two compiler warnings.

git-svn-id: svn://svn.cc65.org/cc65/trunk@5593 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz 2012-03-10 20:35:22 +00:00
parent 1a7b115b3c
commit 74108cd74f
2 changed files with 2 additions and 1 deletions

View File

@ -196,7 +196,7 @@ static void OptPop (const char* Opt attribute ((unused)),
static void OptRead (const char* Opt, const char* Arg)
static void OptRead (const char* Opt attribute ((unused)), const char* Arg)
/* Read an input file */
{
static const char* NameList[] = {

View File

@ -42,6 +42,7 @@
#include "xmalloc.h"
/* sp65 */
#include "attr.h"
#include "error.h"
#include "fileio.h"
#include "pcx.h"