summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2014-11-25 12:08:06 -0800
committerH. Peter Anvin <hpa@zytor.com>2014-11-25 12:14:52 -0800
commitaa433d738cd13178db926362d13a2560c7b1bf75 (patch)
tree09c3ec19e914daa3d2775861b77fce64c199a8f6
parentc0c67c67c865c71f6da2c8a796d7c6702988895a (diff)
downloadnasm-aa433d738cd13178db926362d13a2560c7b1bf75.tar.gz
Add missing static declaration in output/outcoff.c
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
-rw-r--r--output/outcoff.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/output/outcoff.c b/output/outcoff.c
index 5af063b5..d813f5d2 100644
--- a/output/outcoff.c
+++ b/output/outcoff.c
@@ -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
* the specific copyright holders.
*
@@ -737,7 +737,7 @@ typedef struct tagString {
static STRING *Exports = NULL;
static struct Section *directive_sec;
-void AddExport(char *name)
+static void AddExport(char *name)
{
STRING *rvp = Exports, *newS;