]> git.meshlink.io Git - meshlink/blobdiff - src/devtools.c
Fix compiler warnings.
[meshlink] / src / devtools.c
index 7068c726cec016035bf37199c184cbdd74b02f2a..ca59ad9b9e54a8b7b4a04aad9da3c58af7296900 100644 (file)
 
 #include "devtools.h"
 
-static int node_compare(const void *a, const void *b) {
-       if(a < b)
-               return -1;
-
-       if(a > b)
-               return 1;
-
-       return 0;
-}
-
 static bool fstrwrite(const char *str, FILE *stream) {
        size_t len = strlen(str);