summaryrefslogtreecommitdiff
path: root/src/string
diff options
context:
space:
mode:
Diffstat (limited to 'src/string')
-rw-r--r--src/string/strverscmp.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/string/strverscmp.c b/src/string/strverscmp.c
new file mode 100644
index 00000000..70549678
--- /dev/null
+++ b/src/string/strverscmp.c
@@ -0,0 +1,7 @@
+#include <string.h>
+
+int strverscmp(const char *l, const char *r)
+{
+ /* FIXME */
+ return strcmp(l, r);
+}