1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-28 19:29:53 +00:00

Remove tabs, fixed accidental insertion of stdio.h.

This commit is contained in:
Stephan Mühlstrasser 2015-02-08 17:21:23 +01:00
parent fc237faba7
commit de3df033d3
2 changed files with 4 additions and 4 deletions

View File

@ -201,7 +201,7 @@ static int Compare (const void* Key, const void* Entry)
return strcmp ((const char*) Key, ((const TargetEntry*)Entry)->Name);
}
#include <stdio.h>
target_t FindTarget (const char* Name)
/* Find a target by name and return the target id. TGT_UNKNOWN is returned if

View File

@ -64,8 +64,8 @@ typedef enum {
TGT_PLUS4,
TGT_CBM510,
TGT_CBM610,
TGT_OSIC1P,
TGT_PET,
TGT_OSIC1P,
TGT_PET,
TGT_BBC,
TGT_APPLE2,
TGT_APPLE2ENH,
@ -76,7 +76,7 @@ typedef enum {
TGT_NES,
TGT_SUPERVISION,
TGT_LYNX,
TGT_SIM6502,
TGT_SIM6502,
TGT_SIM65C02,
TGT_COUNT /* Number of target systems */
} target_t;