Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/linux-sunxi/sunxi-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlejandro Mery <amery@geeks.cl>2012-05-11 12:34:33 +0400
committerAlejandro Mery <amery@geeks.cl>2012-05-11 12:34:51 +0400
commit02a8f0abd2e3948f1f1592e7dd992527510e9d2f (patch)
tree6ca79cc4f8371261343265096edaf07561528fab /script_bin.c
parentc3e7cb1d51c87c01022df76a287db15b7ae5e0a9 (diff)
fexc: use script_bin.o
Diffstat (limited to 'script_bin.c')
-rw-r--r--script_bin.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/script_bin.c b/script_bin.c
index c06b916..6ee89b2 100644
--- a/script_bin.c
+++ b/script_bin.c
@@ -32,8 +32,8 @@
/**
*/
-size_t calculate_bin_size(struct script *script,
- size_t *sections, size_t *entries)
+size_t script_bin_size(struct script *script,
+ size_t *sections, size_t *entries)
{
size_t words = 0, bin_size = 0;
struct list_entry *ls, *le;
@@ -91,8 +91,9 @@ size_t calculate_bin_size(struct script *script,
return bin_size;
}
-int generate_bin(void *bin, size_t UNUSED(bin_size), struct script *script,
- size_t sections, size_t entries)
+int script_generate_bin(void *bin, size_t UNUSED(bin_size),
+ struct script *script,
+ size_t sections, size_t entries)
{
struct script_bin_head *head;
struct script_bin_section *section;