Implement compare_always function.

This commit is contained in:
Danila Fedorin 2016-12-20 21:22:10 -08:00
parent 22c73d5a0e
commit 6003b00e36
1 changed files with 5 additions and 0 deletions

5
src/libds.c Normal file
View File

@ -0,0 +1,5 @@
#include "libds.h"
int compare_always(void* a, void* b){
return 1;
}