tUse unnamed decls - spoon - dwm status utility (2f30 fork)
 (HTM) git clone git://src.adamsgaard.dk/spoon
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) LICENSE
       ---
 (DIR) commit f55b311e791cb4d18e10a668cefeb16262a783f5
 (DIR) parent 448bcca3baf1645bd9df534aae2d00f8e238911c
 (HTM) Author: sin <sin@2f30.org>
       Date:   Thu, 13 Oct 2016 17:05:31 +0100
       
       Use unnamed decls
       
       Diffstat:
         M spoon.c                             |      20 ++++++++++----------
       
       1 file changed, 10 insertions(+), 10 deletions(-)
       ---
 (DIR) diff --git a/spoon.c b/spoon.c
       t@@ -7,16 +7,16 @@
        
        #define LEN(x) (sizeof (x) / sizeof *(x))
        
       -int battread(char *buf, size_t len);
       -int cpuread(char *buf, size_t len);
       -int dateread(char *buf, size_t len);
       -int dummyread(char *buf, size_t len);
       -int loadread(char *buf, size_t len);
       -int mixread(char *buf, size_t len);
       -int mpdread(char *buf, size_t len);
       -int tempread(char *buf, size_t len);
       -int wifiread(char *buf, size_t len);
       -int xkblayoutread(char *buf, size_t len);
       +int battread(char *, size_t);
       +int cpuread(char *, size_t);
       +int dateread(char *, size_t);
       +int dummyread(char *, size_t);
       +int loadread(char *, size_t);
       +int mixread(char *, size_t);
       +int mpdread(char *, size_t);
       +int tempread(char *, size_t);
       +int wifiread(char *, size_t);
       +int xkblayoutread(char *, size_t);
        
        struct ent {
                char *fmt;