diff options
author | Sébastien Dailly <sebastien@dailly.me> | 2025-01-22 13:43:50 +0100 |
---|---|---|
committer | Sébastien Dailly <sebastien@dailly.me> | 2025-01-23 12:24:10 +0100 |
commit | 37556ab070abcbf87a1a822c95aeccf19dade687 (patch) | |
tree | f7d7b4a3ae4e689224de177c01f4f0ecc2fd1a7c /lib/configuration/locale.c | |
parent | 8e012f4804ecf1665819e761283120a3c0e73643 (diff) |
Force the locale before printing a result
Diffstat (limited to 'lib/configuration/locale.c')
-rw-r--r-- | lib/configuration/locale.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/lib/configuration/locale.c b/lib/configuration/locale.c deleted file mode 100644 index eeafd26..0000000 --- a/lib/configuration/locale.c +++ /dev/null @@ -1,12 +0,0 @@ -#include <stdio.h> -#include <locale.h> -#include <caml/memory.h> -#include <caml/alloc.h> - -CAMLprim value set_locale( value param ) -{ - const char *s; - s = String_val(param); - setlocale(LC_NUMERIC, s); - return Val_unit; -} |