diff options
author | David Schleef <ds@ginger.bigkitten.com> | 2007-12-10 12:25:50 -0800 |
---|---|---|
committer | David Schleef <ds@ginger.bigkitten.com> | 2007-12-10 12:25:50 -0800 |
commit | f7e9397d75ca9ab12b74b3ce54ffef335c688d06 (patch) | |
tree | 29da7ce18a1dc91e8f9534da4c2ba00116a69896 /examples | |
parent | af9d38ed8946bbd9b5285c61dd60039c8b261232 (diff) |
Remove static from a function that is sometimes unused.
Diffstat (limited to 'examples')
-rw-r--r-- | examples/printcpu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/printcpu.c b/examples/printcpu.c index 7014e28..5fc953f 100644 --- a/examples/printcpu.c +++ b/examples/printcpu.c @@ -39,7 +39,7 @@ #include <string.h> #include <stdarg.h> -static char * +char * string_append (char *str, const char *append) { char *ret; |