Fix prototypes.

git-svn-id: https://svn.code.sf.net/p/freedos/svn/kernel/trunk@172 6ac86273-5f31-0410-b378-82cca8765d1b
This commit is contained in:
Bart Oldeman 2001-03-22 04:55:36 +00:00
parent 6b4bb899c8
commit 390ffb8de6
2 changed files with 10 additions and 3 deletions

View File

@ -40,6 +40,9 @@ static BYTE *RcsId = "$Id$";
/*
* $Log$
* Revision 1.11 2001/03/22 04:55:36 bartoldeman
* Fix prototypes.
*
* Revision 1.10 2001/03/21 02:56:25 bartoldeman
* See history.txt for changes. Bug fixes and HMA support are the main ones.
*
@ -800,8 +803,6 @@ INIT static VOID Dosmem(BYTE * pLine)
if (HMAwanted)
{
int MoveKernelToHMA();
HMATextIsAvailable = MoveKernelToHMA();
}
}

View File

@ -34,6 +34,9 @@ static BYTE *Proto_hRcsId = "$Id$";
/*
* $Log$
* Revision 1.10 2001/03/22 04:55:36 bartoldeman
* Fix prototypes.
*
* Revision 1.9 2001/03/21 02:56:26 bartoldeman
* See history.txt for changes. Bug fixes and HMA support are the main ones.
*
@ -345,6 +348,9 @@ BOOL FcbClose(xfcb FAR * lpXfcb);
BOOL FcbFindFirst(xfcb FAR * lpXfcb);
BOOL FcbFindNext(xfcb FAR * lpXfcb);
/* inithma.c */
int MoveKernelToHMA(void);
/* initoem.c */
UWORD init_oem(void);
@ -542,4 +548,4 @@ unsigned long FAR is_dosemu(void);
void ConvertName83ToNameSZ(BYTE FAR *destSZ, BYTE FAR *srcFCBName);
VOID FAR *HMAalloc(COUNT bytesToAllocate);
VOID FAR *HMAalloc(COUNT bytesToAllocate);