mirror of
https://github.com/Interlisp/maiko.git
synced 2026-02-02 06:41:21 +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:
18
src/bin.c
18
src/bin.c
@@ -7,8 +7,6 @@
|
||||
/* */
|
||||
/************************************************************************/
|
||||
|
||||
#include "version.h"
|
||||
|
||||
/***********************************************************************/
|
||||
/*
|
||||
File Name : bin.c
|
||||
@@ -24,18 +22,14 @@
|
||||
|
||||
*/
|
||||
/**********************************************************************/
|
||||
|
||||
#include "lispemul.h"
|
||||
#include "lispmap.h"
|
||||
#include "version.h"
|
||||
#include "adr68k.h" // for Addr68k_from_LADDR
|
||||
#include "bindefs.h" // for N_OP_bin
|
||||
#include "emlglob.h"
|
||||
#include "lispmap.h" // for S_POSITIVE
|
||||
#include "lspglob.h"
|
||||
#include "lsptypes.h"
|
||||
#include "address.h"
|
||||
#include "adr68k.h"
|
||||
#include "cell.h"
|
||||
#include "stream.h"
|
||||
|
||||
#include "bindefs.h"
|
||||
#include "lsptypes.h" // for state, ERROR_EXIT, GetTypeNumber, Get_BYTE
|
||||
#include "stream.h" // for Stream
|
||||
|
||||
LispPTR N_OP_bin(register int tos) {
|
||||
register Stream *stream68k; /* stream instance on TOS */
|
||||
|
||||
Reference in New Issue
Block a user