]> www.infradead.org Git - mtd-utils.git/commitdiff
Eliminate warnings about missing prototypes
authorDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>
Thu, 22 Jun 2017 11:37:40 +0000 (13:37 +0200)
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>
Wed, 28 Jun 2017 08:27:31 +0000 (10:27 +0200)
This patch eliminates warnings generated by the -Wmissing-prototypes
option. With this flag set, we are now forced to have prototypes for
all global, exported functions, that have to be made visible to the
definitions and we are forced to mark all local functions as static.

Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
37 files changed:
jffsX-utils/jffs2dump.c
jffsX-utils/jffs2reader.c
jffsX-utils/mkfs.jffs2.c
jffsX-utils/sumtool.c
lib/libcrc32.c
lib/libfec.c
lib/libmtd.c
misc-utils/docfdisk.c
misc-utils/flash_otp_write.c
misc-utils/ftl_check.c
misc-utils/mtd_debug.c
nand-utils/nandtest.c
nand-utils/nftl_format.c
nor-utils/rfddump.c
nor-utils/rfdformat.c
tests/checkfs/checkfs.c
tests/checkfs/makefiles.c
tests/fs-tests/integrity/integck.c
tests/fs-tests/lib/tests.c
tests/fs-tests/simple/ftrunc.c
tests/fs-tests/simple/orph.c
tests/fs-tests/simple/perf.c
tests/fs-tests/simple/test_1.c
tests/fs-tests/simple/test_2.c
tests/fs-tests/stress/atoms/fwrite00.c
tests/fs-tests/stress/atoms/gcd_hupper.c
tests/fs-tests/stress/atoms/pdfrun.c
tests/fs-tests/stress/atoms/rmdir00.c
tests/fs-tests/stress/atoms/rndrm00.c
tests/fs-tests/stress/atoms/rndrm99.c
tests/fs-tests/stress/atoms/rndwrite00.c
tests/fs-tests/stress/atoms/stress_1.c
tests/fs-tests/stress/atoms/stress_2.c
tests/fs-tests/stress/atoms/stress_3.c
tests/fs-tests/utils/fstest_monitor.c
tests/jittertest/JitterTest.c
tests/jittertest/plotJittervsFill.c

index a7d99e877611691c1280af5e8f87bda5765922ca..ad7a9e32a7cac2b183a5fb4fd79efc656be4fcf8 100644 (file)
@@ -50,7 +50,7 @@
 long   imglen;         // length of image
 char   *data;          // image data
 
-void display_help (int error)
+static void display_help (int error)
 {
        printf("Usage: %s [OPTION]... INPUTFILE\n"
               "Dump the contents of a binary JFFS2 image.\n\n"
@@ -68,7 +68,7 @@ void display_help (int error)
        exit(error ? EXIT_FAILURE : EXIT_SUCCESS);
 }
 
-void display_version (void)
+static void display_version (void)
 {
        common_print_version();
        printf("Copyright (C) 2003 Thomas Gleixner \n"
@@ -95,7 +95,7 @@ char  cnvfile[256];           // filename for conversion output
 int    datsize;                // Size of data chunks, when oob data is inside the binary image
 int    oobsize;                // Size of oob chunks, when oob data is inside the binary image
 
-void process_options (int argc, char *argv[])
+static void process_options (int argc, char *argv[])
 {
        int error = 0;
 
@@ -170,7 +170,7 @@ void process_options (int argc, char *argv[])
 /*
  *     Dump image contents
  */
-void do_dumpcontent (void)
+static void do_dumpcontent (void)
 {
        char                    *p = data, *p_free_begin;
        union jffs2_node_union  *node;
@@ -479,7 +479,7 @@ void do_dumpcontent (void)
 /*
  *     Convert endianess
  */
-void do_endianconvert (void)
+static void do_endianconvert (void)
 {
        char                    *p = data;
        union jffs2_node_union  *node, newnode;
index 16870ba7d86beb191c5266f75bdf545e9807f228..083500e9fdbd15fe8621775ec4c435fa4360000f 100644 (file)
@@ -106,27 +106,9 @@ struct dir {
 
 int target_endian = __BYTE_ORDER;
 
-void putblock(char *, size_t, size_t *, struct jffs2_raw_inode *);
-struct dir *putdir(struct dir *, struct jffs2_raw_dirent *);
-void printdir(char *o, size_t size, struct dir *d, const char *path,
-               int recurse, int want_ctime);
-void freedir(struct dir *);
+static struct jffs2_raw_inode *find_raw_inode(char *, size_t, uint32_t);
 
-struct jffs2_raw_inode *find_raw_inode(char *o, size_t size, uint32_t ino);
-struct jffs2_raw_dirent *resolvedirent(char *, size_t, uint32_t, uint32_t,
-               char *, uint8_t);
-struct jffs2_raw_dirent *resolvename(char *, size_t, uint32_t, char *, uint8_t);
-struct jffs2_raw_dirent *resolveinode(char *, size_t, uint32_t);
-
-struct jffs2_raw_dirent *resolvepath0(char *, size_t, uint32_t, const char *,
-               uint32_t *, int);
-struct jffs2_raw_dirent *resolvepath(char *, size_t, uint32_t, const char *,
-               uint32_t *);
-
-void lsdir(char *, size_t, const char *, int, int);
-void catfile(char *, size_t, char *, char *, size_t, size_t *);
-
-int main(int, char **);
+static void lsdir(char *, size_t, const char *, int, int);
 
 /* writes file node into buffer, to the proper position. */
 /* reading all valid nodes in version order reconstructs the file. */
@@ -138,7 +120,7 @@ int main(int, char **);
    n       - node
  */
 
-void putblock(char *b, size_t bsize, size_t * rsize,
+static void putblock(char *b, size_t bsize, size_t * rsize,
                struct jffs2_raw_inode *n)
 {
        uLongf dlen = je32_to_cpu(n->dsize);
@@ -184,7 +166,7 @@ void putblock(char *b, size_t bsize, size_t * rsize,
    return value: directory struct value replacing dd
  */
 
-struct dir *putdir(struct dir *dd, struct jffs2_raw_dirent *n)
+static struct dir *putdir(struct dir *dd, struct jffs2_raw_dirent *n)
 {
        struct dir *o, *d, *p;
 
@@ -279,7 +261,7 @@ static const char SMODE0[] = "..S..S..T";
  * Return the standard ls-like mode string from a file mode.
  * This is static and so is overwritten on each call.
  */
-const char *mode_string(int mode)
+static const char *mode_string(int mode)
 {
        static char buf[12];
 
@@ -301,8 +283,8 @@ const char *mode_string(int mode)
    d       - dir struct
  */
 
-void printdir(char *o, size_t size, struct dir *d, const char *path, int recurse,
-               int want_ctime)
+static void printdir(char *o, size_t size, struct dir *d, const char *path,
+                                        int recurse, int want_ctime)
 {
        char m;
        char *filetime;
@@ -404,7 +386,7 @@ void printdir(char *o, size_t size, struct dir *d, const char *path, int recurse
    d       - dir struct
  */
 
-void freedir(struct dir *d)
+static void freedir(struct dir *d)
 {
        struct dir *t;
 
@@ -429,7 +411,8 @@ void freedir(struct dir *d)
    inode, or NULL
  */
 
-struct jffs2_raw_inode *find_raw_inode(char *o, size_t size, uint32_t ino)
+static struct jffs2_raw_inode *find_raw_inode(char *o, size_t size,
+                                                                                         uint32_t ino)
 {
        /* aligned! */
        union jffs2_node_union *n;
@@ -497,7 +480,7 @@ struct jffs2_raw_inode *find_raw_inode(char *o, size_t size, uint32_t ino)
    return value: result directory structure, replaces d.
  */
 
-struct dir *collectdir(char *o, size_t size, uint32_t ino, struct dir *d)
+static struct dir *collectdir(char *o, size_t size, uint32_t ino, struct dir *d)
 {
        /* aligned! */
        union jffs2_node_union *n;
@@ -585,7 +568,7 @@ struct dir *collectdir(char *o, size_t size, uint32_t ino, struct dir *d)
    filesystem image or NULL
  */
 
-struct jffs2_raw_dirent *resolvedirent(char *o, size_t size,
+static struct jffs2_raw_dirent *resolvedirent(char *o, size_t size,
                uint32_t ino, uint32_t pino,
                char *name, uint8_t nsize)
 {
@@ -642,7 +625,7 @@ struct jffs2_raw_dirent *resolvedirent(char *o, size_t size,
    filesystem image or NULL
  */
 
-struct jffs2_raw_dirent *resolvename(char *o, size_t size, uint32_t pino,
+static struct jffs2_raw_dirent *resolvename(char *o, size_t size, uint32_t pino,
                char *name, uint8_t nsize)
 {
        return resolvedirent(o, size, 0, pino, name, nsize);
@@ -659,7 +642,7 @@ struct jffs2_raw_dirent *resolvename(char *o, size_t size, uint32_t pino,
    filesystem image or NULL
  */
 
-struct jffs2_raw_dirent *resolveinode(char *o, size_t size, uint32_t ino)
+static struct jffs2_raw_dirent *resolveinode(char *o, size_t size, uint32_t ino)
 {
        return resolvedirent(o, size, ino, 0, NULL, 0);
 }
@@ -682,7 +665,7 @@ struct jffs2_raw_dirent *resolveinode(char *o, size_t size, uint32_t ino)
    (return value is NULL), but it has inode (*inos=1)
  */
 
-struct jffs2_raw_dirent *resolvepath0(char *o, size_t size, uint32_t ino,
+static struct jffs2_raw_dirent *resolvepath0(char *o, size_t size, uint32_t ino,
                const char *p, uint32_t * inos, int recc)
 {
        struct jffs2_raw_dirent *dir = NULL;
@@ -798,7 +781,7 @@ struct jffs2_raw_dirent *resolvepath0(char *o, size_t size, uint32_t ino,
    (return value is NULL), but it has inode (*inos=1)
  */
 
-struct jffs2_raw_dirent *resolvepath(char *o, size_t size, uint32_t ino,
+static struct jffs2_raw_dirent *resolvepath(char *o, size_t size, uint32_t ino,
                const char *p, uint32_t * inos)
 {
        return resolvepath0(o, size, ino, p, inos, 0);
@@ -812,7 +795,8 @@ struct jffs2_raw_dirent *resolvepath(char *o, size_t size, uint32_t ino,
    p       - path to be resolved
  */
 
-void lsdir(char *o, size_t size, const char *path, int recurse, int want_ctime)
+static void lsdir(char *o, size_t size, const char *path, int recurse,
+                                 int want_ctime)
 {
        struct jffs2_raw_dirent *dd;
        struct dir *d = NULL;
@@ -841,8 +825,8 @@ void lsdir(char *o, size_t size, const char *path, int recurse, int want_ctime)
    rsize   - file result size
  */
 
-void catfile(char *o, size_t size, char *path, char *b, size_t bsize,
-               size_t * rsize)
+static void catfile(char *o, size_t size, char *path, char *b, size_t bsize,
+                                       size_t * rsize)
 {
        struct jffs2_raw_dirent *dd;
        struct jffs2_raw_inode *ri;
index 2fb77301431f82373e21cad46b36775a53ce0b5f..9aa6c397e93a69f8219fee2efc9aaff8775b5770 100644 (file)
@@ -112,7 +112,7 @@ static int squash_perms = 0;
 static int fake_times = 0;
 int target_endian = __BYTE_ORDER;
 
-uint32_t find_hardlink(struct filesystem_entry *e)
+static uint32_t find_hardlink(struct filesystem_entry *e)
 {
        struct filesystem_entry *f;
        struct rb_node **n = &hardlinks.rb_node;
@@ -139,7 +139,7 @@ uint32_t find_hardlink(struct filesystem_entry *e)
        return 0;
 }
 
-extern char *xreadlink(const char *path)
+static char *xreadlink(const char *path)
 {
        static const int GROWBY = 80; /* how large we will grow strings by */
 
@@ -1428,7 +1428,7 @@ static const char helptext[] =
 "  -V, --version           Display version information\n"
 "  -i, --incremental=FILE  Parse FILE and generate appendage output for it\n\n";
 
-int load_next_block() {
+static int load_next_block(void) {
 
        int ret;
        ret = read(in_fd, file_buffer, erase_block_size);
@@ -1439,7 +1439,7 @@ int load_next_block() {
        return ret;
 }
 
-void process_buffer(int inp_size) {
+static void process_buffer(int inp_size) {
        uint8_t         *p = file_buffer;
        union jffs2_node_union  *node;
        uint16_t        type;
@@ -1542,7 +1542,7 @@ void process_buffer(int inp_size) {
        }
 }
 
-void parse_image(){
+static void parse_image(void){
        int ret;
 
        file_buffer = xmalloc(erase_block_size);
index a995bdf21d8e5aa821d90ed5c5a5c03511110821..68268a9ce6c7f33323c6789e4a3d8c96eab072dc 100644 (file)
@@ -120,7 +120,7 @@ static unsigned char ffbuf[16] = {
 
 static void full_write(void *target_buff, const void *buf, int len);
 
-void setup_cleanmarker(void)
+static void setup_cleanmarker(void)
 {
        cleanmarker.magic = cpu_to_je16(JFFS2_MAGIC_BITMASK);
        cleanmarker.nodetype = cpu_to_je16(JFFS2_NODETYPE_CLEANMARKER);
@@ -128,7 +128,7 @@ void setup_cleanmarker(void)
        cleanmarker.hdr_crc = cpu_to_je32(mtd_crc32(0, &cleanmarker, sizeof(struct jffs2_unknown_node)-4));
 }
 
-void process_options (int argc, char **argv)
+static void process_options (int argc, char **argv)
 {
        int opt,c;
 
@@ -227,24 +227,24 @@ void process_options (int argc, char **argv)
 }
 
 
-void init_buffers(void)
+static void init_buffers(void)
 {
        data_buffer = xmalloc(erase_block_size);
        file_buffer = xmalloc(erase_block_size);
 }
 
-void init_sumlist(void)
+static void init_sumlist(void)
 {
        sum_collected = xzalloc(sizeof(*sum_collected));
 }
 
-void clean_buffers(void)
+static void clean_buffers(void)
 {
        free(data_buffer);
        free(file_buffer);
 }
 
-void clean_sumlist(void)
+static void clean_sumlist(void)
 {
        union jffs2_sum_mem *temp;
 
@@ -264,7 +264,7 @@ void clean_sumlist(void)
        }
 }
 
-int load_next_block(void)
+static int load_next_block(void)
 {
        int ret;
        ret = read(in_fd, file_buffer, erase_block_size);
@@ -275,7 +275,7 @@ int load_next_block(void)
        return ret;
 }
 
-void write_buff_to_file(void)
+static void write_buff_to_file(void)
 {
        int ret;
        int len = data_ofs;
@@ -299,7 +299,7 @@ void write_buff_to_file(void)
        data_ofs = 0;
 }
 
-void dump_sum_records(void)
+static void dump_sum_records(void)
 {
 
        struct jffs2_raw_summary isum;
@@ -475,7 +475,7 @@ static inline void pad_block_if_less_than(int req,int plus)
        }
 }
 
-void flush_buffers(void)
+static void flush_buffers(void)
 {
 
        if ((add_cleanmarkers == 1) && (found_cleanmarkers == 1)) { /* CLEANMARKER */
@@ -513,7 +513,7 @@ void flush_buffers(void)
        }
 }
 
-int add_sum_mem(union jffs2_sum_mem *item)
+static int add_sum_mem(union jffs2_sum_mem *item)
 {
 
        if (!sum_collected->sum_list_head)
@@ -549,7 +549,7 @@ int add_sum_mem(union jffs2_sum_mem *item)
        return 0;
 }
 
-void add_sum_inode_mem(union jffs2_node_union *node)
+static void add_sum_inode_mem(union jffs2_node_union *node)
 {
        struct jffs2_sum_inode_mem *temp = xmalloc(sizeof(*temp));
 
@@ -563,7 +563,7 @@ void add_sum_inode_mem(union jffs2_node_union *node)
        add_sum_mem((union jffs2_sum_mem *) temp);
 }
 
-void add_sum_dirent_mem(union jffs2_node_union *node)
+static void add_sum_dirent_mem(union jffs2_node_union *node)
 {
        struct jffs2_sum_dirent_mem *temp = xmalloc(sizeof(*temp) + node->d.nsize);
 
@@ -581,7 +581,7 @@ void add_sum_dirent_mem(union jffs2_node_union *node)
        add_sum_mem((union jffs2_sum_mem *) temp);
 }
 
-void add_sum_xattr_mem(union jffs2_node_union *node)
+static void add_sum_xattr_mem(union jffs2_node_union *node)
 {
        struct jffs2_sum_xattr_mem *temp = xmalloc(sizeof(*temp));
 
@@ -595,7 +595,7 @@ void add_sum_xattr_mem(union jffs2_node_union *node)
        add_sum_mem((union jffs2_sum_mem *) temp);
 }
 
-void add_sum_xref_mem(union jffs2_node_union *node)
+static void add_sum_xref_mem(union jffs2_node_union *node)
 {
        struct jffs2_sum_xref_mem *temp = xmalloc(sizeof(*temp));
 
@@ -606,7 +606,7 @@ void add_sum_xref_mem(union jffs2_node_union *node)
        add_sum_mem((union jffs2_sum_mem *) temp);
 }
 
-void write_dirent_to_buff(union jffs2_node_union *node)
+static void write_dirent_to_buff(union jffs2_node_union *node)
 {
        pad_block_if_less_than(je32_to_cpu (node->d.totlen),JFFS2_SUMMARY_DIRENT_SIZE(node->d.nsize));
        add_sum_dirent_mem(node);
@@ -615,7 +615,7 @@ void write_dirent_to_buff(union jffs2_node_union *node)
 }
 
 
-void write_inode_to_buff(union jffs2_node_union *node)
+static void write_inode_to_buff(union jffs2_node_union *node)
 {
        pad_block_if_less_than(je32_to_cpu (node->i.totlen),JFFS2_SUMMARY_INODE_SIZE);
        add_sum_inode_mem(node);        /* Add inode summary mem to summary list */
@@ -623,7 +623,7 @@ void write_inode_to_buff(union jffs2_node_union *node)
        padword();
 }
 
-void write_xattr_to_buff(union jffs2_node_union *node)
+static void write_xattr_to_buff(union jffs2_node_union *node)
 {
        pad_block_if_less_than(je32_to_cpu(node->x.totlen), JFFS2_SUMMARY_XATTR_SIZE);
        add_sum_xattr_mem(node);        /* Add xdatum summary mem to summary list */
@@ -631,7 +631,7 @@ void write_xattr_to_buff(union jffs2_node_union *node)
        padword();
 }
 
-void write_xref_to_buff(union jffs2_node_union *node)
+static void write_xref_to_buff(union jffs2_node_union *node)
 {
        pad_block_if_less_than(je32_to_cpu(node->r.totlen), JFFS2_SUMMARY_XREF_SIZE);
        add_sum_xref_mem(node);         /* Add xref summary mem to summary list */
@@ -639,7 +639,7 @@ void write_xref_to_buff(union jffs2_node_union *node)
        padword();
 }
 
-void create_summed_image(int inp_size)
+static void create_summed_image(int inp_size)
 {
        uint8_t *p = file_buffer;
        union jffs2_node_union *node;
index 90b916c93475355e64dde7b0a3d52a6a6cf63e28..48563a8f666edb89a4bd34771225fbc6143e5627 100644 (file)
@@ -38,6 +38,7 @@
  */
 
 #include <stdint.h>
+#include "crc32.h"
 
 static const uint32_t crc32_table[256] = {
        0x00000000L, 0x77073096L, 0xee0e612cL, 0x990951baL, 0x076dc419L,
index 0d8056a15014734cef67833aded2689f6b50e650..aeb0bc2a48b5e1bae713275edbf5c2c57d33e8a2 100644 (file)
@@ -544,7 +544,7 @@ fail:
  * q = values of the polynomial (known)
  */
 
-int
+static int
 invert_vdm(gf *src, int k)
 {
     int i, j, row, col ;
index a50f18af00782e7cbca340b45bd6ef08b92bf1e9..1ecb31b811bb9d0961a28b7a3b3c24a3fc019990 100644 (file)
@@ -1200,9 +1200,9 @@ int mtd_write(libmtd_t desc, const struct mtd_dev_info *mtd, int fd, int eb,
        return 0;
 }
 
-int do_oob_op(libmtd_t desc, const struct mtd_dev_info *mtd, int fd,
-             uint64_t start, uint64_t length, void *data, unsigned int cmd64,
-             unsigned int cmd)
+static int do_oob_op(libmtd_t desc, const struct mtd_dev_info *mtd, int fd,
+                    uint64_t start, uint64_t length, void *data,
+                    unsigned int cmd64, unsigned int cmd)
 {
        int ret, oob_offs;
        struct mtd_oob_buf64 oob64;
index b363662c2d0a5e28b43074c1cd137d234e5680dc..c2b915082fffad9a305fa3dfb0becf3352528647 100644 (file)
@@ -44,7 +44,7 @@ struct INFTLMediaHeader *mh;
 
 #define MAXSCAN 10
 
-void show_header(int mhoffs) {
+static void show_header(int mhoffs) {
        int i, unitsize, numunits, bmbits, numpart;
        int start, end, num, nextunit;
        unsigned int flags;
index 111318ddb1722ef2ac59c3cca7ea0d646b8910a9..b02d0b0362d2b8a6447d1f7798e46e3ef7c9ee7f 100644 (file)
@@ -16,7 +16,7 @@
 #include <common.h>
 #include <mtd/mtd-user.h>
 
-ssize_t xread(int fd, void *buf, size_t count)
+static ssize_t xread(int fd, void *buf, size_t count)
 {
        ssize_t ret, done = 0;
 
index 970d968b8cbfdadfee9d1706f560b81c33568dcd..a853cf44548e1656a8c0d9f12d0bf16918b3b2b4 100644 (file)
@@ -169,7 +169,7 @@ static void check_partition(int fd)
 } /* format_partition */
 
 /* Show usage information */
-void showusage(void)
+static void showusage(void)
 {
        fprintf(stderr, "usage: %s device\n", PROGRAM_NAME);
 }
index f3826cf05bfb11398722fb3fd3756ec54c1a79d2..90f5d524771a73d363815721d41923d1324765b9 100644 (file)
@@ -76,7 +76,7 @@ static int getregions(int fd, struct region_info_user *regions, int *n)
        return 0;
 }
 
-int erase_flash(int fd, u_int32_t offset, u_int32_t bytes)
+static int erase_flash(int fd, u_int32_t offset, u_int32_t bytes)
 {
        int err;
        struct erase_info_user erase;
@@ -91,7 +91,7 @@ int erase_flash(int fd, u_int32_t offset, u_int32_t bytes)
        return 0;
 }
 
-void printsize(u_int32_t x)
+static void printsize(u_int32_t x)
 {
        int i;
        static const char *flags = "KMGT";
@@ -103,7 +103,7 @@ void printsize(u_int32_t x)
                printf("(%u%c)", x, flags[i]);
 }
 
-int flash_to_file(int fd, off_t offset, size_t len, const char *filename)
+static int flash_to_file(int fd, off_t offset, size_t len, const char *filename)
 {
        u_int8_t *buf = NULL;
        int outfd, err;
@@ -172,7 +172,8 @@ err0:
        return 1;
 }
 
-int file_to_flash(int fd, off_t offset, u_int32_t len, const char *filename)
+static int file_to_flash(int fd, off_t offset, u_int32_t len,
+                        const char *filename)
 {
        u_int8_t *buf = NULL;
        FILE *fp;
@@ -228,7 +229,7 @@ retry:
        return 0;
 }
 
-int showinfo(int fd)
+static int showinfo(int fd)
 {
        int i, err, n;
        struct mtd_info_user mtd;
@@ -338,7 +339,7 @@ int showinfo(int fd)
        return 0;
 }
 
-void showusage(void)
+static void showusage(void)
 {
        fprintf(stderr, "usage: %1$s info <device>\n"
                        "       %1$s read <device> <offset> <len> <dest-filename>\n"
index 9e39446de2572aed9a0056118cc1604bfb15288f..d5c736930429764eff4bd418c4a34d48599d6888 100644 (file)
@@ -17,7 +17,7 @@
 #include "mtd/mtd-user.h"
 #include "common.h"
 
-void usage(int status)
+static void usage(int status)
 {
        fprintf(status ? stderr : stdout,
                "usage: %s [OPTIONS] <device>\n\n"
@@ -40,7 +40,8 @@ int fd;
 int markbad=0;
 int seed;
 
-int read_and_compare(loff_t ofs, unsigned char *data, unsigned char *rbuf)
+static int read_and_compare(loff_t ofs, unsigned char *data,
+                           unsigned char *rbuf)
 {
        ssize_t len;
        int i;
@@ -89,7 +90,8 @@ int read_and_compare(loff_t ofs, unsigned char *data, unsigned char *rbuf)
        return 0;
 }
 
-int erase_and_write(loff_t ofs, unsigned char *data, unsigned char *rbuf, int nr_reads)
+static int erase_and_write(loff_t ofs, unsigned char *data, unsigned char *rbuf,
+                          int nr_reads)
 {
        struct erase_info_user er;
        ssize_t len;
index ea8199d5509d2c6fb8114204ac1b41558ca5e8f4..ec87604ad87977f944f8daf8ba2a07b6c2b14e11 100644 (file)
@@ -198,7 +198,7 @@ static int checkbbt(void)
        return (0);
 }
 
-void usage(int rc)
+static void usage(int rc)
 {
        fprintf(stderr, "Usage: %s [-ib] <mtddevice> [<start offset> [<size>]]\n", PROGRAM_NAME);
        exit(rc);
index 5141ea37b9263fc46a6f99d94e790acd85f1cbb3..4ad2f91eb60985ed51f89af13cdb881d12204325 100644 (file)
@@ -55,7 +55,7 @@ struct rfd {
        int verbose;
 };
 
-void display_help(int status)
+static void display_help(int status)
 {
        printf("Usage: %s [OPTIONS] MTD-device filename\n"
                        "Dumps the contents of a resident flash disk\n"
@@ -68,7 +68,7 @@ void display_help(int status)
        exit(status);
 }
 
-void display_version(void)
+static void display_version(void)
 {
        common_print_version();
        printf("This is free software; see the source for copying conditions.  There is NO\n"
@@ -76,7 +76,7 @@ void display_version(void)
        exit(0);
 }
 
-void process_options(int argc, char *argv[], struct rfd *rfd)
+static void process_options(int argc, char *argv[], struct rfd *rfd)
 {
        int error = 0;
 
@@ -125,7 +125,7 @@ void process_options(int argc, char *argv[], struct rfd *rfd)
        rfd->out_filename = argv[optind + 1];
 }
 
-int build_block_map(struct rfd *rfd, int fd, int block)
+static int build_block_map(struct rfd *rfd, int fd, int block)
 {
        int  i;
        int sectors;
index 1f01a8531012138b1b47ddccec32035f6dd918f2..0a3d9fbc46cb838110040cece705dac6213ff49f 100644 (file)
@@ -30,7 +30,7 @@
 
 #include "common.h"
 
-void display_help(int status)
+static void display_help(int status)
 {
        printf("Usage: %s [OPTIONS] MTD-device\n"
                        "Formats NOR flash for resident flash disk\n"
@@ -41,7 +41,7 @@ void display_help(int status)
        exit(status);
 }
 
-void display_version(void)
+static void display_version(void)
 {
        common_print_version();
        printf("This is free software; see the source for copying conditions.  There is NO\n"
@@ -49,7 +49,7 @@ void display_version(void)
        exit(0);
 }
 
-void process_options(int argc, char *argv[], const char **mtd_filename)
+static void process_options(int argc, char *argv[], const char **mtd_filename)
 {
        int error = 0;
 
index 3e4a6e2a5e41db0889a3d644e098e910ac2aab01..3e34cc49bf7e32f3f6b54576cb7c5e8cf31a4f2d 100644 (file)
@@ -161,7 +161,7 @@ static const unsigned short crc_ccitt_table[] = {
   Returns file descriptor to open port. Use this fd to write to port
   and close it later, when done.
 */
-int setupSerial (const char *dev) {
+static int setupSerial (const char *dev) {
     int i, fd;
     struct termios tios;
 
@@ -215,7 +215,7 @@ int setupSerial (const char *dev) {
 //CRC to calculate out to 0xf0b8 (the hardcoded value at the end)
 //and returns TRUE if it is and FALSE if it doesn't.
 //Why don't people document better!!!!
-int check_crc_ccitt(char *filename)
+static int check_crc_ccitt(char *filename)
 {
     FILE *fp;
     FILE *logfp;
@@ -306,7 +306,7 @@ int check_crc_ccitt(char *filename)
   initially (and once) created by the separate "makefiles.c"
   program.
 */
-void send_pwrdn_ok(void){
+static void send_pwrdn_ok(void){
 
     int fd;
     FILE *cyclefp;
@@ -363,7 +363,7 @@ void send_pwrdn_ok(void){
   Appends 16bit CRC at the end of numBytes long buffer.
   Make sure buf, extends at least 2 bytes beyond.
  */
-void appendChecksum(char *buf, int numBytes){
+static void appendChecksum(char *buf, int numBytes){
 
     unsigned short crc = 0xffff;
     int index = 0;
@@ -395,7 +395,7 @@ void appendChecksum(char *buf, int numBytes){
   number of int's in it (this is needed to know how much
   data to read and checksum later).
 */
-void make_new_file(char *filename){
+static void make_new_file(char *filename){
 
 
     int dfd; /* data file descriptor */
@@ -486,7 +486,7 @@ void make_new_file(char *filename){
 /*
   Show's help on stdout
  */
-void printHelp(char **argv)
+static void printHelp(char **argv)
 {
     printf("Usage:%s <options, defined below>\n", argv[0]);
     printf("%s </dev/ttyS0,1,2...>: Set com port to send ok to pwr dn msg on\n",
@@ -502,7 +502,7 @@ void printHelp(char **argv)
 
 
 
-void processCmdLine(int argc, char **argv)
+static void processCmdLine(int argc, char **argv)
 {
 
     int cnt;
index 52fea5467fa3be7f06f9ba60670f2726f7e52295..4f37f2e18b90180e2da0227eadb0981231a4a9c0 100644 (file)
@@ -79,7 +79,7 @@ static const unsigned short crc_ccitt_table[] = {
 //CRC to calculate out to 0xf0b8 (the hardcoded value at the end)
 //and returns TRUE if it is and FALSE if it doesn't.
 //Why don't people document better!!!!
-void check_crc_ccitt(char *filename)
+static void check_crc_ccitt(char *filename)
 {
   FILE *fp;
   unsigned short crc = 0xffff;
@@ -127,7 +127,7 @@ void check_crc_ccitt(char *filename)
  contents, and then appends the checksum at the end of the file,
  closes the file and returns.
 */
-void checksum(char *filename){
+static void checksum(char *filename){
 
   FILE *fp;
   unsigned short crc = 0xffff;
index 827adc5205bf12626d83902f94dd80897be92762..cac145dec7835eebc861e444d0d96119b4ba0efa 100644 (file)
@@ -1640,7 +1640,7 @@ static char *symlink_path(const char *path, const char *target_pathname)
        return p;
 }
 
-void symlink_check(const struct symlink_info *symlink)
+static void symlink_check(const struct symlink_info *symlink)
 {
        char *path, buf[8192], *target;
        struct stat st1, st2;
index 8a6a5f55a06ea8a749c38d95adc3dc2ceb1a2013..8d4d83a0512cdd74b5759ce53cc3142f26f8e684 100644 (file)
@@ -530,7 +530,7 @@ void tests_check_filled_file(const char *file_name)
        CHECK(close(fd) != -1);
 }
 
-void tests_sync_directory(const char *file_name)
+static void tests_sync_directory(const char *file_name)
 {
        char *path;
        char *dir;
@@ -949,7 +949,7 @@ int64_t tests_remove_entry(void)
 }
 
 /* Read mount information from /proc/mounts or /etc/mtab */
-int tests_get_mount_info(struct mntent *info)
+static int tests_get_mount_info(struct mntent *info)
 {
        FILE *f;
        struct mntent *entry;
index 86edf650340e307f5a6b6bf0d3fea73f29979469..2df404b96fad3eaf7067f4a6652ccc91e06edf29 100644 (file)
@@ -32,7 +32,7 @@
 
 #define WRITE_BUFFER_SIZE 32768
 
-void ftrunc(void)
+static void ftrunc(void)
 {
        int fd, i;
        pid_t pid;
@@ -74,14 +74,14 @@ void ftrunc(void)
 
 /* Title of this test */
 
-const char *ftrunc_get_title(void)
+static const char *ftrunc_get_title(void)
 {
        return "Truncate a large test file";
 }
 
 /* Description of this test */
 
-const char *ftrunc_get_description(void)
+static const char *ftrunc_get_description(void)
 {
        return
                "Create a file named ftrunc_test_file. " \
index f6d89564f8eb5b21a01ad220dd9347e0bed12de6..c51fa2cde9fe43db170a39733269344719250f85 100644 (file)
@@ -32,7 +32,7 @@
 
 #define MAX_ORPHANS 1000000
 
-void orph(void)
+static void orph(void)
 {
        pid_t pid;
        unsigned i, j, k, n;
@@ -133,14 +133,14 @@ void orph(void)
 
 /* Title of this test */
 
-const char *orph_get_title(void)
+static const char *orph_get_title(void)
 {
        return "Create many open unlinked files";
 }
 
 /* Description of this test */
 
-const char *orph_get_description(void)
+static const char *orph_get_description(void)
 {
        return
                "Create a directory named orph_test_dir_pid, where " \
index b98b98bf17ad53336b1b7245a1d609c6e9e9b138..aee8226a1199778a47d6cd181088a749cded3800 100644 (file)
@@ -66,7 +66,7 @@ static unsigned speed(size_t bytes, long long usecs)
        return (unsigned) k;
 }
 
-void perf(void)
+static void perf(void)
 {
        pid_t pid;
        int fd, i;
@@ -155,14 +155,14 @@ void perf(void)
 
 /* Title of this test */
 
-const char *perf_get_title(void)
+static const char *perf_get_title(void)
 {
        return "Measure file system read and write speed";
 }
 
 /* Description of this test */
 
-const char *perf_get_description(void)
+static const char *perf_get_description(void)
 {
        return
                "Syncs the file system (a newly created empty file system is " \
index 79fd0b9735ab30d113e53513721326a7dc54569e..874e4b28ec147d56d6b763247f7a88288af7ca3e 100644 (file)
@@ -28,7 +28,7 @@
 
 #include "tests.h"
 
-void test_1(void)
+static void test_1(void)
 {
        int fd;
        pid_t pid;
@@ -112,14 +112,14 @@ void test_1(void)
 
 /* Title of this test */
 
-const char *test_1_get_title(void)
+static const char *test_1_get_title(void)
 {
        return "Fill file system while holding deleted big file descriptor";
 }
 
 /* Description of this test */
 
-const char *test_1_get_description(void)
+static const char *test_1_get_description(void)
 {
        return
                "Create a directory named test_1_test_dir_pid, where " \
index 20944606a92340eee61198eeecdf7af8b4c70f8e..cef1536e16b4dd185e1beed85b383077303b8cd0 100644 (file)
@@ -28,7 +28,7 @@
 
 #include "tests.h"
 
-void test_2(void)
+static void test_2(void)
 {
        pid_t pid;
        int create, full;
@@ -163,14 +163,14 @@ void test_2(void)
 
 /* Title of this test */
 
-const char *test_2_get_title(void)
+static const char *test_2_get_title(void)
 {
        return "Repeated write many small files and one big deleted file";
 }
 
 /* Description of this test */
 
-const char *test_2_get_description(void)
+static const char *test_2_get_description(void)
 {
        return
                "Create a directory named test_2_test_dir_pid, where " \
index fd691befc275548fda9745d1e4d562aaec87d061..3406bba44232b8a8fa497e34ffd8514e398cb045 100644 (file)
@@ -34,7 +34,7 @@
 
 #define HOLE_BLOCK_SIZE 10000000
 
-void filestress00(void)
+static void filestress00(void)
 {
        int fd, i, deleted;
        pid_t pid;
@@ -153,14 +153,14 @@ void filestress00(void)
 
 /* Title of this test */
 
-const char *filestress00_get_title(void)
+static const char *filestress00_get_title(void)
 {
        return "File stress test 00";
 }
 
 /* Description of this test */
 
-const char *filestress00_get_description(void)
+static const char *filestress00_get_description(void)
 {
        return
                "Create a file named filestress00_test_file_pid, where " \
index 31c175da6e43e1a2755ac02b52cf7d9849e19eb4..522250b92a8644c388de194121799f3e8030d561 100644 (file)
@@ -46,7 +46,7 @@ struct gcd_pid
 
 struct gcd_pid *gcd_pid_list = NULL;
 
-int add_gcd_pid(const char *number)
+static int add_gcd_pid(const char *number)
 {
        int pid;
        FILE *f;
@@ -86,7 +86,7 @@ int add_gcd_pid(const char *number)
        return pid;
 }
 
-int get_pid_list(void)
+static int get_pid_list(void)
 {
        DIR *dir;
        struct dirent *entry;
@@ -107,7 +107,7 @@ int get_pid_list(void)
        return 0;
 }
 
-int parse_index_number(const char *name)
+static int parse_index_number(const char *name)
 {
        const char *p, *q;
        int all_zero;
@@ -133,7 +133,7 @@ int parse_index_number(const char *name)
        return index;
 }
 
-int get_mtd_index(void)
+static int get_mtd_index(void)
 {
        FILE *f;
        struct mntent *entry;
@@ -172,7 +172,7 @@ int get_mtd_index(void)
        return mtd_index;
 }
 
-int get_gcd_pid()
+static int get_gcd_pid(void)
 {
        struct gcd_pid *g;
        int mtd_index;
@@ -188,7 +188,7 @@ int get_gcd_pid()
        return 0;
 }
 
-void gcd_hupper(void)
+static void gcd_hupper(void)
 {
        int64_t repeat;
        int pid;
@@ -213,14 +213,14 @@ void gcd_hupper(void)
 
 /* Title of this test */
 
-const char *gcd_hupper_get_title(void)
+static const char *gcd_hupper_get_title(void)
 {
        return "Send HUP signals to gcd";
 }
 
 /* Description of this test */
 
-const char *gcd_hupper_get_description(void)
+static const char *gcd_hupper_get_description(void)
 {
        return
                "Determine the PID of the gcd process. " \
index 46c70e16382d187bb9753e788ff1afd3e3d9e348..094af667c60fdb07e9b4b37b37e49783f773811c 100644 (file)
@@ -32,7 +32,7 @@
 
 #define WRITE_BUFFER_SIZE 32768
 
-void adjust_size(void)
+static void adjust_size(void)
 {
        char dummy[1024];
        unsigned long total_memory;
@@ -49,7 +49,7 @@ void adjust_size(void)
                tests_size_parameter = total_memory / 2;
 }
 
-void run_pdf(void)
+static void run_pdf(void)
 {
        int fd, i;
        pid_t pid;
@@ -99,14 +99,14 @@ void run_pdf(void)
 
 /* Title of this test */
 
-const char *run_pdf_get_title(void)
+static const char *run_pdf_get_title(void)
 {
        return "Create / overwrite a large file in the current directory";
 }
 
 /* Description of this test */
 
-const char *run_pdf_get_description(void)
+static const char *run_pdf_get_description(void)
 {
        return
                "Create a file named run_pdf_test_file_pid, " \
index c1d0729fd6c78246ae3ff620f798c7ad8952df46..d8553109f61cda37fe663453b9e5b1c492d8e055 100644 (file)
@@ -30,7 +30,7 @@
 
 #include "tests.h"
 
-void rmdir00(void)
+static void rmdir00(void)
 {
        int64_t repeat;
        int64_t size, this_size;
@@ -77,14 +77,14 @@ void rmdir00(void)
 
 /* Title of this test */
 
-const char *rmdir00_get_title(void)
+static const char *rmdir00_get_title(void)
 {
        return "Create and remove directories and files";
 }
 
 /* Description of this test */
 
-const char *rmdir00_get_description(void)
+static const char *rmdir00_get_description(void)
 {
        return
                "Create a directory named rmdir00_test_dir_pid, where " \
index 724b1c3adb7ae24ac74359d0d801fb5fad3f0425..75e163c0da945a8341ab5199abb29fcd5a7556a6 100644 (file)
@@ -30,7 +30,7 @@
 
 #include "tests.h"
 
-void rndrm00(void)
+static void rndrm00(void)
 {
        int64_t repeat;
        int64_t size, this_size;
@@ -100,14 +100,14 @@ void rndrm00(void)
 
 /* Title of this test */
 
-const char *rndrm00_get_title(void)
+static const char *rndrm00_get_title(void)
 {
        return "Randomly create and remove directories and files";
 }
 
 /* Description of this test */
 
-const char *rndrm00_get_description(void)
+static const char *rndrm00_get_description(void)
 {
        return
                "Create a directory named rndrm00_test_dir_pid, where " \
index 77518398fc8795f2f78bf6d55ec4de83aa10c0e5..340fe5d42db91d3cd84d586d33a7801f29954376 100644 (file)
@@ -43,7 +43,7 @@ uint32_t dirs_created = 0;
 uint32_t dirs_removed = 0;
 int64_t *size_ptr = 0;
 
-void display_stats(void)
+static void display_stats(void)
 {
        printf( "\nrndrm99 stats:\n"
                "\tNumber of files created = %u\n"
@@ -62,12 +62,12 @@ void display_stats(void)
 struct timeval tv_before;
 struct timeval tv_after;
 
-void before(void)
+static void before(void)
 {
        CHECK(gettimeofday(&tv_before, NULL) != -1);
 }
 
-void after(const char *msg)
+static void after(const char *msg)
 {
        time_t diff;
        CHECK(gettimeofday(&tv_after, NULL) != -1);
@@ -104,7 +104,7 @@ static void init_write_buffer()
 
 /* Write size random bytes into file descriptor fd at the current position,
    returning the number of bytes actually written */
-uint64_t fill_file(int fd, uint64_t size)
+static uint64_t fill_file(int fd, uint64_t size)
 {
        ssize_t written;
        size_t sz;
@@ -142,7 +142,7 @@ uint64_t fill_file(int fd, uint64_t size)
 }
 
 /* Create a file of size file_size */
-uint64_t create_file(const char *file_name, uint64_t file_size)
+static uint64_t create_file(const char *file_name, uint64_t file_size)
 {
        int fd;
        int flags;
@@ -176,7 +176,7 @@ uint64_t create_file(const char *file_name, uint64_t file_size)
 }
 
 /* Create an empty sub-directory or small file in the current directory */
-int64_t create_entry(char *return_name)
+static int64_t create_entry(char *return_name)
 {
        int fd;
        char name[256];
@@ -217,7 +217,7 @@ int64_t create_entry(char *return_name)
 }
 
 /* Remove a random file of empty sub-directory from the current directory */
-int64_t remove_entry(void)
+static int64_t remove_entry(void)
 {
        DIR *dir;
        struct dirent *entry;
@@ -291,7 +291,7 @@ int64_t remove_entry(void)
        return result;
 }
 
-void rndrm99(void)
+static void rndrm99(void)
 {
        int64_t repeat, loop_cnt;
        int64_t size, this_size;
@@ -374,14 +374,14 @@ void rndrm99(void)
 
 /* Title of this test */
 
-const char *rndrm99_get_title(void)
+static const char *rndrm99_get_title(void)
 {
        return "Randomly create and remove directories and files";
 }
 
 /* Description of this test */
 
-const char *rndrm99_get_description(void)
+static const char *rndrm99_get_description(void)
 {
        return
                "Create a directory named rndrm99_test_dir_pid, where " \
index 3c38e43b25e6981f41bf63b85f17a906939ee9a2..7dba6bed01de8257d35e9e6c20848ff70c8c669d 100644 (file)
@@ -52,7 +52,7 @@ static void check_file(int fd, char *data, size_t length)
        CHECK(n == length);
 }
 
-void rndwrite00(void)
+static void rndwrite00(void)
 {
        int fd;
        pid_t pid;
@@ -143,14 +143,14 @@ void rndwrite00(void)
 
 /* Title of this test */
 
-const char *rndwrite00_get_title(void)
+static const char *rndwrite00_get_title(void)
 {
        return "Randomly write a large test file";
 }
 
 /* Description of this test */
 
-const char *rndwrite00_get_description(void)
+static const char *rndwrite00_get_description(void)
 {
        return
                "Create a file named rndwrite00_test_file_pid, where " \
index 86f94c2dd9342955465288119e8214710e2d2614..678f8fafeb3d099518aa49fe37bd8124de8d9dbd 100644 (file)
@@ -32,7 +32,7 @@
 
 #define WRITE_BUFFER_SIZE 32768
 
-void stress_1(void)
+static void stress_1(void)
 {
        int fd, i;
        pid_t pid;
@@ -71,14 +71,14 @@ void stress_1(void)
 
 /* Title of this test */
 
-const char *stress_1_get_title(void)
+static const char *stress_1_get_title(void)
 {
        return "Create / overwrite a large file";
 }
 
 /* Description of this test */
 
-const char *stress_1_get_description(void)
+static const char *stress_1_get_description(void)
 {
        return
                "Create a file named stress_1_test_file_pid, " \
index a9bc31a9ca472cefc6311333cc0177ccd51dad78..5dea1b7eca338e8f59cdf5228e38228bbfb5c266 100644 (file)
@@ -32,7 +32,7 @@
 
 #define WRITE_BUFFER_SIZE 32768
 
-void stress_2(void)
+static void stress_2(void)
 {
        int fd, i;
        pid_t pid;
@@ -77,14 +77,14 @@ void stress_2(void)
 
 /* Title of this test */
 
-const char *stress_2_get_title(void)
+static const char *stress_2_get_title(void)
 {
        return "Create / overwrite a large deleted file";
 }
 
 /* Description of this test */
 
-const char *stress_2_get_description(void)
+static const char *stress_2_get_description(void)
 {
        return
                "Create a file named stress_2_test_file. " \
index 99fb05dbf0435c9bf3853a2f35bfd724f6d472ae..0272d52ee039da701a5dd50c2bc0b07f8099f3d4 100644 (file)
@@ -32,7 +32,7 @@
 
 #define WRITE_BUFFER_SIZE 32768
 
-void stress_3(void)
+static void stress_3(void)
 {
        int fd, i;
        pid_t pid;
@@ -79,14 +79,14 @@ void stress_3(void)
 
 /* Title of this test */
 
-const char *stress_3_get_title(void)
+static const char *stress_3_get_title(void)
 {
        return "Create a file with a large hole and fill it";
 }
 
 /* Description of this test */
 
-const char *stress_3_get_description(void)
+static const char *stress_3_get_description(void)
 {
        return
                "Create a file named stress_3_test_file_pid, " \
index 298ee268314d64b80b565dde12d5dc7ec3ce61ea..58946cc60e7289bba805a1b3eb29303ca5d5242b 100644 (file)
@@ -38,7 +38,7 @@ struct child_info {
 
 struct child_info *children = 0;
 
-void kill_children(void)
+static void kill_children(void)
 {
        struct child_info *child;
 
@@ -57,7 +57,7 @@ void kill_children(void)
        }
 }
 
-void add_child(pid_t child_pid)
+static void add_child(pid_t child_pid)
 {
        struct child_info *child;
        size_t sz;
@@ -70,7 +70,7 @@ void add_child(pid_t child_pid)
        children = child;
 }
 
-void mark_child_gone(pid_t child_pid)
+static void mark_child_gone(pid_t child_pid)
 {
        struct child_info *child;
 
@@ -84,7 +84,7 @@ void mark_child_gone(pid_t child_pid)
        }
 }
 
-int have_children(void)
+static int have_children(void)
 {
        struct child_info *child;
 
@@ -97,7 +97,7 @@ int have_children(void)
        return 0;
 }
 
-int parse_command_line(char *cmdline, int *pargc, char ***pargv)
+static int parse_command_line(char *cmdline, int *pargc, char ***pargv)
 {
        char **tmp;
        char *p, *v, *q;
@@ -175,7 +175,7 @@ int parse_command_line(char *cmdline, int *pargc, char ***pargv)
        return 0;
 }
 
-void signal_handler(int signum)
+static void signal_handler(int signum)
 {
        kill_children();
 }
@@ -183,7 +183,7 @@ void signal_handler(int signum)
 int result = 0;
 int alarm_gone_off = 0;
 
-void alarm_handler(int signum)
+static void alarm_handler(int signum)
 {
        if (!result)
                alarm_gone_off = 1;
index 1d74b8af3e0169d244b32134bf70d2a02fc31cd0..0364a00132b9e6fcce44d33885d61880866eb073 100644 (file)
@@ -451,7 +451,7 @@ void SignalHandler(
   stats reset by doing a (any) write to the /proc/profile
   file.
  */
-void doGrabKProfile(int jitterusec, char *fileName)
+static void doGrabKProfile(int jitterusec, char *fileName)
 {
     int fdSnapshot;
     int fdProfile;
@@ -498,7 +498,7 @@ void doGrabKProfile(int jitterusec, char *fileName)
 /*
   Call this routine to clear the kernel profiling buffer /proc/profile
 */
-void clearProfileBuf(void){
+static void clearProfileBuf(void){
 
 
   int fdProfile;
index f9427f165277b8fd3a10397d33f55fd8471f4989..8d71a337f7e192872a90ae32d1d9f77043113346 100644 (file)
@@ -75,7 +75,7 @@ static int Debug = 0; /* Debug level. Each "-d" on the cmd line increases the le
 
 #define MIN_JITTER_THRESHOLD 1 /* ms minimum jitter threshold */
 
-void PrintHelpInfo(void)
+static void PrintHelpInfo(void)
 {
     printf("Usage: plotJittervsFill [options] -f [--file] <input log file name> -t [--jitter_threshold] <jitter threshold in ms>\n");
     printf("[options]:\n-v [--version] Print version and exit\n");
@@ -90,7 +90,7 @@ void PrintHelpInfo(void)
  *  This function handles the command line arguments.
  *  output: stack size
  ***********************************************************************/
-void HandleCmdLineArgs(
+static void HandleCmdLineArgs(
     int argc,                       /* number of command-line arguments */
     char *argv[])                   /* ptrs to command-line arguments   */
 {