summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2014-11-25 12:10:14 -0800
committerH. Peter Anvin <hpa@zytor.com>2014-11-25 12:14:52 -0800
commitc9f04470794f9085ae4bd18a40c48e14202ad420 (patch)
treea085a274d860db137b62224018f367e11f45bf6b
parentd4184a0e0faa4e070fe93911c3942c9ab8ee7b50 (diff)
downloadnasm-c9f04470794f9085ae4bd18a40c48e14202ad420.tar.gz
Add missing static declarations in rdoff/ldrdf.c
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
-rw-r--r--rdoff/ldrdf.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/rdoff/ldrdf.c b/rdoff/ldrdf.c
index 7c61d4cf..7cb542c7 100644
--- a/rdoff/ldrdf.c
+++ b/rdoff/ldrdf.c
@@ -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
* the specific copyright holders.
*
@@ -165,7 +165,7 @@ int errorcount = 0; /* determines main program exit status */
*
* sets up segments 0, 1, and 2, the initial code data and bss segments
*/
-void initsegments()
+static void initsegments(void)
{
nsegs = 3;
outputseg[0].type = 1;
@@ -190,7 +190,7 @@ void initsegments()
* each segment it contains (including determining destination segments and
* relocation factors for segments that are kept).
*/
-void loadmodule(const char *filename)
+static void loadmodule(const char *filename)
{
if (options.verbose)
printf("loading `%s'\n", filename);
@@ -426,7 +426,7 @@ void processmodule(const char *filename, struct modulenode *mod)
/*
* Return 1 if a given module is in the list, 0 otherwise.
*/
-int lookformodule(const char *name)
+static int lookformodule(const char *name)
{
struct modulenode *curr = modules;
@@ -560,7 +560,7 @@ int symtab_get(const char *symbol, int *segment, int32_t *offset)
* checks that a library can be opened and is in the correct format,
* then adds it to the linked list of libraries.
*/
-void add_library(const char *name)
+static void add_library(const char *name)
{
if (rdl_verify(name)) {
rdl_perror("ldrdf", name);
@@ -599,7 +599,7 @@ void add_library(const char *name)
* returns 1 if any extra library modules are included, indicating that
* another pass through the library list should be made (possibly).
*/
-int search_libraries()
+static int search_libraries(void)
{
struct librarynode *cur;
rdffile f;
@@ -706,7 +706,7 @@ int search_libraries()
* all the modules into a single output module, and then writes this to a
* file.
*/
-void write_output(const char *filename)
+static void write_output(const char *filename)
{
FILE *f;
rdf_headerbuf *rdfheader;
@@ -1153,7 +1153,7 @@ void write_output(const char *filename)
* Main program
*/
-void usage()
+static void usage(void)
{
printf("usage:\n"
" ldrdf [options] object modules ... [-llibrary ...]\n"