Removed unnecessary #include <cc65.h> from convert.c
Adjusted block comments to predominant style
This commit is contained in:
parent
1dee2360fa
commit
db971d8a65
3 changed files with 5 additions and 4 deletions
|
@ -51,8 +51,9 @@ typedef unsigned size_t;
|
|||
#if __CC65_STD__ == __CC65_STD_CC65__
|
||||
|
||||
/* Those non-standard cc65 exit constants definitions are in addition
|
||||
to the EXIT_SUCCESS and EXIT_FAILURE constants, which should not be
|
||||
redefined */
|
||||
** to the EXIT_SUCCESS and EXIT_FAILURE constants, which should not be
|
||||
** redefined
|
||||
*/
|
||||
#define EXIT_ASSERT 2
|
||||
#define EXIT_ABORT 3
|
||||
|
||||
|
|
|
@ -1581,7 +1581,8 @@ void DbgEntry (void)
|
|||
clrscr ();
|
||||
|
||||
/* Exit intentionally with error because one may
|
||||
say that DbgEntry is always abnormal. */
|
||||
** say that DbgEntry is always abnormal.
|
||||
*/
|
||||
exit (EXIT_FAILURE);
|
||||
|
||||
}
|
||||
|
|
|
@ -5,7 +5,6 @@
|
|||
#include <dirent.h>
|
||||
#include <device.h>
|
||||
#include <dio.h>
|
||||
#include <cc65.h>
|
||||
|
||||
unsigned char info_signature[3] = {3, 21, 63 | 0x80};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue