Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

headers: resolve headers minor issues #167

Merged
merged 1 commit into from
Jul 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion hdr/ddate.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/****************************************************************/
/* */
/* date.h */
/* ddate.h */
/* */
/* DOS General Date Structure */
/* */
Expand Down
2 changes: 1 addition & 1 deletion hdr/dtime.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/****************************************************************/
/* */
/* time.h */
/* dtime.h */
/* */
/* DOS General Time Structure */
/* */
Expand Down
6 changes: 3 additions & 3 deletions hdr/nls.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
/****************************************************************/

/* one byte alignment */
#include <algnbyte.h>
#include "algnbyte.h"

/*
* Description of the organization of NLS information -- 2000/02/13 ska
Expand Down Expand Up @@ -175,7 +175,7 @@
*
* Performance tweaks:
* When the system -- This word applies to the combination of kernel and
* any loaded MUX-14 extension � la NLSFUNC here. -- uppercases
* any loaded MUX-14 extension � la NLSFUNC here. -- uppercases
* _filenames_, it must perform a DOS-65-A2 internally. In the basic
* implementation this request would be channeled through MUX-14, even
* if there is no external NLSFUNC at all. Also, when a NLS pkg had
Expand Down Expand Up @@ -623,7 +623,7 @@ struct nlsCSys_loadPackage {
};

/* standard alignment */
#include <algndflt.h>
#include "algndflt.h"

#ifdef DEBUG
/* Enable debugging of NLS part */
Expand Down
4 changes: 2 additions & 2 deletions hdr/pcb.h
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ static BYTE *pcb_hRcsId =
#endif

/* Force one-byte alignment for all the internal structures, see above */
#include <algnbyte.h>
#include "algnbyte.h"
/* */
/* interrupt handler structure definition */
/* */
Expand Down Expand Up @@ -158,7 +158,7 @@ typedef struct {
#define FLG_CARRY 0x0001

/* Allow default alignment from now on */
#include <algndflt.h>
#include "algndflt.h"

#endif

2 changes: 1 addition & 1 deletion kernel/nls.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
#include "portab.h"
#include "globals.h"
#include "pcb.h"
#include <nls.h>
#include "nls.h"

#ifdef VERSION_STRINGS
static BYTE *RcsId =
Expand Down