From 390ffb8de67470fe1ed6f59c8b530b35d1b20395 Mon Sep 17 00:00:00 2001 From: Bart Oldeman Date: Thu, 22 Mar 2001 04:55:36 +0000 Subject: [PATCH] Fix prototypes. git-svn-id: https://svn.code.sf.net/p/freedos/svn/kernel/trunk@172 6ac86273-5f31-0410-b378-82cca8765d1b --- kernel/config.c | 5 +++-- kernel/proto.h | 8 +++++++- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/kernel/config.c b/kernel/config.c index ed03bc9..6beb11a 100644 --- a/kernel/config.c +++ b/kernel/config.c @@ -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(); } } diff --git a/kernel/proto.h b/kernel/proto.h index 5a35a6e..baeb896 100644 --- a/kernel/proto.h +++ b/kernel/proto.h @@ -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); \ No newline at end of file +VOID FAR *HMAalloc(COUNT bytesToAllocate);