summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2014-11-25 12:34:03 -0800
committerH. Peter Anvin <hpa@zytor.com>2014-11-25 12:34:03 -0800
commit48166388d54542c88eb2596b7e9b084c7c4e68a7 (patch)
tree63d8b9e868c24d28db54a50962a58e4ed1f13b1b
parentef18237372df58b2ebf497693590218375c633d2 (diff)
downloadnasm-48166388d54542c88eb2596b7e9b084c7c4e68a7.tar.gz
Add missing static declarations in rdoff/rdflib.c
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
-rw-r--r--rdoff/rdflib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/rdoff/rdflib.c b/rdoff/rdflib.c
index 1213bead..1490396f 100644
--- a/rdoff/rdflib.c
+++ b/rdoff/rdflib.c
@@ -109,7 +109,7 @@ static void int32_ttolocal(int32_t *l)
#endif
}
-char copybytes(FILE * fp, FILE * fp2, int n)
+static char copybytes(FILE * fp, FILE * fp2, int n)
{
int i, t = 0;
@@ -129,7 +129,7 @@ char copybytes(FILE * fp, FILE * fp2, int n)
return (char)t; /* return last char read */
}
-int32_t copyint32_t(FILE * fp, FILE * fp2)
+static int32_t copyint32_t(FILE * fp, FILE * fp2)
{
int32_t l;
int i, t;