summaryrefslogtreecommitdiff
path: root/src/runtime/c/gu/fun.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/c/gu/fun.h')
-rw-r--r--src/runtime/c/gu/fun.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/runtime/c/gu/fun.h b/src/runtime/c/gu/fun.h
index 0004e9923..f4c1a5a38 100644
--- a/src/runtime/c/gu/fun.h
+++ b/src/runtime/c/gu/fun.h
@@ -62,4 +62,10 @@ struct GuEquality {
bool (*is_equal)(GuEquality* self, const void* a, const void* b);
};
+typedef const struct GuOrder GuOrder;
+
+struct GuOrder {
+ int (*compare)(GuOrder* self, const void* a, const void* b);
+};
+
#endif // GU_FUN_H_