Skip to content

Commit f9beab6

Browse files
jmalakPerditionC
authored andcommitted
headers: resolve headers minor issues
correct header name in comments use algnbyte.h and algndflt.h as "user" header instead of "system" header
1 parent 2985b33 commit f9beab6

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

hdr/ddate.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/****************************************************************/
22
/* */
3-
/* date.h */
3+
/* ddate.h */
44
/* */
55
/* DOS General Date Structure */
66
/* */

hdr/dtime.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/****************************************************************/
22
/* */
3-
/* time.h */
3+
/* dtime.h */
44
/* */
55
/* DOS General Time Structure */
66
/* */

hdr/nls.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
/****************************************************************/
2929

3030
/* one byte alignment */
31-
#include <algnbyte.h>
31+
#include "algnbyte.h"
3232

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

625625
/* standard alignment */
626-
#include <algndflt.h>
626+
#include "algndflt.h"
627627

628628
#ifdef DEBUG
629629
/* Enable debugging of NLS part */

hdr/pcb.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ static BYTE *pcb_hRcsId =
5757
#endif
5858

5959
/* Force one-byte alignment for all the internal structures, see above */
60-
#include <algnbyte.h>
60+
#include "algnbyte.h"
6161
/* */
6262
/* interrupt handler structure definition */
6363
/* */
@@ -158,7 +158,7 @@ typedef struct {
158158
#define FLG_CARRY 0x0001
159159

160160
/* Allow default alignment from now on */
161-
#include <algndflt.h>
161+
#include "algndflt.h"
162162

163163
#endif
164164

kernel/nls.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
#include "portab.h"
3737
#include "globals.h"
3838
#include "pcb.h"
39-
#include <nls.h>
39+
#include "nls.h"
4040

4141
#ifdef VERSION_STRINGS
4242
static BYTE *RcsId =

0 commit comments

Comments
 (0)