From db971d8a655c8f00109ba1d9403cf9838643b93a Mon Sep 17 00:00:00 2001 From: mc78 Date: Tue, 19 Nov 2019 13:17:02 +0100 Subject: [PATCH] Removed unnecessary #include from convert.c Adjusted block comments to predominant style --- include/stdlib.h | 5 +++-- libsrc/dbg/dbg.c | 3 ++- libsrc/geos-apple/targetutil/convert.c | 1 - 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/include/stdlib.h b/include/stdlib.h index 638cb475b..b929e8f02 100644 --- a/include/stdlib.h +++ b/include/stdlib.h @@ -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 diff --git a/libsrc/dbg/dbg.c b/libsrc/dbg/dbg.c index a6f952f35..27f2086eb 100644 --- a/libsrc/dbg/dbg.c +++ b/libsrc/dbg/dbg.c @@ -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); } diff --git a/libsrc/geos-apple/targetutil/convert.c b/libsrc/geos-apple/targetutil/convert.c index 7798e004d..ea9273fc3 100644 --- a/libsrc/geos-apple/targetutil/convert.c +++ b/libsrc/geos-apple/targetutil/convert.c @@ -5,7 +5,6 @@ #include #include #include -#include unsigned char info_signature[3] = {3, 21, 63 | 0x80};