mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-07-24 10:25:42 -04:00
Add missing static declaration in rdoff/rdlib.c
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
This commit is contained in:
parent
48166388d5
commit
b06da211f4
@ -1,6 +1,6 @@
|
|||||||
/* ----------------------------------------------------------------------- *
|
/* ----------------------------------------------------------------------- *
|
||||||
*
|
*
|
||||||
* Copyright 1996-2009 The NASM Authors - All Rights Reserved
|
* Copyright 1996-2014 The NASM Authors - All Rights Reserved
|
||||||
* See the file AUTHORS included with the NASM distribution for
|
* See the file AUTHORS included with the NASM distribution for
|
||||||
* the specific copyright holders.
|
* the specific copyright holders.
|
||||||
*
|
*
|
||||||
@ -126,7 +126,7 @@ int rdl_open(struct librarynode *lib, const char *name)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void rdl_close(struct librarynode *lib)
|
static void rdl_close(struct librarynode *lib)
|
||||||
{
|
{
|
||||||
if (lib->fp)
|
if (lib->fp)
|
||||||
fclose(lib->fp);
|
fclose(lib->fp);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user