mirror of
https://github.com/Interlisp/maiko.git
synced 2026-02-14 11:54:43 +00:00
Cleanup of includes and related changes based on include-what-you-use diagnostics (#436)
Remove unused #define PERCENT_OF_SCREEN in MyWindow.h Move structures for dir.c to dirdefs.h where they are used Resolve S_CHAR vs S_CHARACTER in favor of S_CHARACTER and cleanup #defines Fix = vs == bug in FSDEBUG code in dir.c Eliminate duplicate/unused constant definitions in gcr.c Declare static internal function bytecmp in mkatom.c Update many source and include files to include headers for what they use
This commit is contained in:
@@ -14,21 +14,18 @@
|
||||
* @file conspage.c
|
||||
*/
|
||||
|
||||
#include <stddef.h>
|
||||
#include "lispemul.h"
|
||||
#include "address.h"
|
||||
#include "adr68k.h"
|
||||
#include "lsptypes.h"
|
||||
#include "cell.h"
|
||||
#include "lispmap.h"
|
||||
#include <stddef.h> // for NULL
|
||||
#include "address.h" // for POINTER_PAGE
|
||||
#include "adr68k.h" // for Addr68k_from_LPAGE, LPAGE_from_68k, LADDR_...
|
||||
#include "allocmdsdefs.h" // for alloc_mdspage
|
||||
#include "car-cdrdefs.h" // for find_close_prior_cell
|
||||
#include "cell.h" // for conspage, freecons, FREECONS, CDR_NIL, CON...
|
||||
#include "commondefs.h" // for error
|
||||
#include "conspagedefs.h" // for N_OP_cons, cons, next_conspage
|
||||
#include "gcdata.h" // for GCLOOKUP, ADDREF, DELREF
|
||||
#include "lispemul.h" // for ConsCell, DLword, LispPTR, NIL_PTR, DLWORD...
|
||||
#include "lspglob.h"
|
||||
#include "gcdata.h"
|
||||
|
||||
#include "conspagedefs.h"
|
||||
#include "allocmdsdefs.h"
|
||||
#include "car-cdrdefs.h"
|
||||
#include "commondefs.h"
|
||||
#include "gchtfinddefs.h"
|
||||
#include "lsptypes.h" // for dtd, Listp, TYPE_LISTP
|
||||
|
||||
/**
|
||||
* Initializes a page of CONS cells, sets up the free count and
|
||||
|
||||
Reference in New Issue
Block a user