0
0
mirror of https://github.com/netwide-assembler/nasm.git synced 2025-09-22 10:43:39 -04:00

Add missing static declaration in output/outcoff.c

Signed-off-by: H. Peter Anvin <hpa@zytor.com>
This commit is contained in:
H. Peter Anvin
2014-11-25 12:08:06 -08:00
parent c0c67c67c8
commit aa433d738c

View File

@@ -1,6 +1,6 @@
/* ----------------------------------------------------------------------- * /* ----------------------------------------------------------------------- *
* *
* Copyright 1996-2013 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.
* *
@@ -737,7 +737,7 @@ typedef struct tagString {
static STRING *Exports = NULL; static STRING *Exports = NULL;
static struct Section *directive_sec; static struct Section *directive_sec;
void AddExport(char *name) static void AddExport(char *name)
{ {
STRING *rvp = Exports, *newS; STRING *rvp = Exports, *newS;