tRemove static as symbol names are prefixed - spoon - dwm status utility (2f30 fork)
 (HTM) git clone git://src.adamsgaard.dk/spoon
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) LICENSE
       ---
 (DIR) commit f011c092f921514df9cc293a4ab3ffa4ce5ab4cf
 (DIR) parent f19cdc0f2b06490cf1626f71c99d0580d2c4e00c
 (HTM) Author: sin <sin@2f30.org>
       Date:   Thu, 13 Oct 2016 15:37:54 +0100
       
       Remove static as symbol names are prefixed
       
       We don't do it in other places in spoon, or other projects either.
       
       Diffstat:
         M batt.c                              |       2 +-
         M wifi.c                              |       2 +-
       
       2 files changed, 2 insertions(+), 2 deletions(-)
       ---
 (DIR) diff --git a/batt.c b/batt.c
       t@@ -2,7 +2,7 @@
        #include <stddef.h>
        #include <stdio.h>
        
       -static void
       +void
        battprint(char *buf, size_t len, int acon , int life)
        {
                char c;
 (DIR) diff --git a/wifi.c b/wifi.c
       t@@ -2,7 +2,7 @@
        #include <stddef.h>
        #include <stdio.h>
        
       -static void
       +void
        wifiprint(char *buf, size_t len, int quality)
        {
                char *icon;