diff options
author | David Robillard <d@drobilla.net> | 2019-08-02 21:42:52 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-08-02 23:28:15 +0200 |
commit | 9f4a5e733b20f2de1619b46e0f7a36b3b5558f6e (patch) | |
tree | c03ee34779195b842ebec356d045e3fffe7986b8 | |
parent | 7096fa292a1044f4edfa627393cfde70e3ac8729 (diff) | |
download | pugl-9f4a5e733b20f2de1619b46e0f7a36b3b5558f6e.tar.gz pugl-9f4a5e733b20f2de1619b46e0f7a36b3b5558f6e.tar.bz2 pugl-9f4a5e733b20f2de1619b46e0f7a36b3b5558f6e.zip |
Test: Remove locale hacks
-rw-r--r-- | test/pugl_test.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/test/pugl_test.c b/test/pugl_test.c index 0470586..7c8d5f2 100644 --- a/test/pugl_test.c +++ b/test/pugl_test.c @@ -26,7 +26,6 @@ #include "pugl/pugl.h" #include "pugl/pugl_gl_backend.h" -#include <locale.h> #include <math.h> #include <stdbool.h> #include <stdio.h> @@ -170,8 +169,6 @@ main(int argc, char** argv) } } - setlocale(LC_CTYPE, ""); - PuglView* view = puglInit(NULL, NULL); puglInitWindowClass(view, "PuglTest"); puglInitWindowSize(view, 512, 512); |