1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-10 03:30:05 +00:00

Removed unnecessary #include <cc65.h> from convert.c

Adjusted block comments to predominant style
This commit is contained in:
mc78 2019-11-19 13:17:02 +01:00 committed by Oliver Schmidt
parent 1dee2360fa
commit db971d8a65
3 changed files with 5 additions and 4 deletions

View File

@ -51,8 +51,9 @@ typedef unsigned size_t;
#if __CC65_STD__ == __CC65_STD_CC65__ #if __CC65_STD__ == __CC65_STD_CC65__
/* Those non-standard cc65 exit constants definitions are in addition /* Those non-standard cc65 exit constants definitions are in addition
to the EXIT_SUCCESS and EXIT_FAILURE constants, which should not be ** to the EXIT_SUCCESS and EXIT_FAILURE constants, which should not be
redefined */ ** redefined
*/
#define EXIT_ASSERT 2 #define EXIT_ASSERT 2
#define EXIT_ABORT 3 #define EXIT_ABORT 3

View File

@ -1581,7 +1581,8 @@ void DbgEntry (void)
clrscr (); clrscr ();
/* Exit intentionally with error because one may /* Exit intentionally with error because one may
say that DbgEntry is always abnormal. */ ** say that DbgEntry is always abnormal.
*/
exit (EXIT_FAILURE); exit (EXIT_FAILURE);
} }

View File

@ -5,7 +5,6 @@
#include <dirent.h> #include <dirent.h>
#include <device.h> #include <device.h>
#include <dio.h> #include <dio.h>
#include <cc65.h>
unsigned char info_signature[3] = {3, 21, 63 | 0x80}; unsigned char info_signature[3] = {3, 21, 63 | 0x80};