summaryrefslogtreecommitdiff
path: root/rgo/src/fastimpl.c
diff options
context:
space:
mode:
Diffstat (limited to 'rgo/src/fastimpl.c')
-rw-r--r--rgo/src/fastimpl.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/rgo/src/fastimpl.c b/rgo/src/fastimpl.c
index c584119..3d3e67f 100644
--- a/rgo/src/fastimpl.c
+++ b/rgo/src/fastimpl.c
@@ -6,10 +6,11 @@
#include <rgo-priv.h>
-sus_typ_u8 rgo_fastimpl(void) {
+#include <stdbool.h>
+#include <stdint.h>
+
#if defined(rgo_priv_fastimpl)
- return sus_typlit_u8(0x1);
+bool const rgo_fastimpl = true;
#else
- return sus_typlit_u8(0x0);
+bool const rgo_fastimpl = false;
#endif
-}