mirror of https://github.com/FDOS/kernel.git
Add forward declaration for config_init_fnodes. Made static too.
git-svn-id: https://svn.code.sf.net/p/freedos/svn/kernel/trunk@829 6ac86273-5f31-0410-b378-82cca8765d1b
This commit is contained in:
parent
0f4d6ea6a1
commit
1fb4a30294
|
@ -250,7 +250,8 @@ STATIC int LoadCountryInfoHardCoded(char *filename, COUNT ctryCode, COUNT codePa
|
||||||
STATIC void umb_init(void);
|
STATIC void umb_init(void);
|
||||||
|
|
||||||
void HMAconfig(int finalize);
|
void HMAconfig(int finalize);
|
||||||
VOID config_init_buffers(COUNT anzBuffers); /* from BLOCKIO.C */
|
STATIC void config_init_buffers(int anzBuffers); /* from BLOCKIO.C */
|
||||||
|
STATIC void config_init_fnodes(int f_nodes_cnt);
|
||||||
|
|
||||||
#ifdef I86
|
#ifdef I86
|
||||||
STATIC VOID FAR * AlignParagraph(VOID FAR * lpPtr);
|
STATIC VOID FAR * AlignParagraph(VOID FAR * lpPtr);
|
||||||
|
@ -1701,7 +1702,7 @@ STATIC COUNT strcasecmp(REG BYTE * d, REG BYTE * s)
|
||||||
that saves some relocation problems
|
that saves some relocation problems
|
||||||
*/
|
*/
|
||||||
|
|
||||||
VOID config_init_buffers(COUNT anzBuffers)
|
STATIC void config_init_buffers(int anzBuffers)
|
||||||
{
|
{
|
||||||
REG WORD i;
|
REG WORD i;
|
||||||
struct buffer FAR *pbuffer;
|
struct buffer FAR *pbuffer;
|
||||||
|
@ -1772,7 +1773,7 @@ VOID config_init_buffers(COUNT anzBuffers)
|
||||||
anzBuffers, anzBuffers * sizeof(struct buffer));
|
anzBuffers, anzBuffers * sizeof(struct buffer));
|
||||||
}
|
}
|
||||||
|
|
||||||
VOID config_init_fnodes(int f_nodes_cnt)
|
STATIC void config_init_fnodes(int f_nodes_cnt)
|
||||||
{
|
{
|
||||||
struct f_node FAR *p;
|
struct f_node FAR *p;
|
||||||
size_t bytes;
|
size_t bytes;
|
||||||
|
|
Loading…
Reference in New Issue