summaryrefslogtreecommitdiff
path: root/rgo/src/strfill.c
diff options
context:
space:
mode:
Diffstat (limited to 'rgo/src/strfill.c')
-rw-r--r--rgo/src/strfill.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/rgo/src/strfill.c b/rgo/src/strfill.c
index 0ba25c7..5d6270a 100644
--- a/rgo/src/strfill.c
+++ b/rgo/src/strfill.c
@@ -4,8 +4,8 @@
If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
-#include <rgo.h>
+#include <rgo-priv.h>
#include <stdint.h>
-void rgo_strfill(char const * const __restrict__ _str,char const _chr) {rgo_memfill(_str,rgo_strlen(_str),(uint8_t)_chr);}
+void rgo_strfill(char * const __restrict__ _str,char const _chr) {rgo_memfill(_str,rgo_strlen(_str),(sus_typ_u8)_chr);}