From d5270660952c2cd0456a83a09d55d721798b6e6e Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Fri, 1 Mar 2019 18:52:33 -0500 Subject: use defs for locale tests --- locale.c | 32 +------------------------------- 1 file changed, 1 insertion(+), 31 deletions(-) (limited to 'locale.c') diff --git a/locale.c b/locale.c index d95831a..7ae3397 100644 --- a/locale.c +++ b/locale.c @@ -2,41 +2,11 @@ #include #include "test.h" -#ifndef LC_ALL -#error LC_ALL not defined -#endif - -#ifndef LC_COLLATE -#error LC_COLLATE not defined -#endif - -#ifndef LC_CTYPE -#error LC_CTYPE not defined -#endif - -#ifndef LC_MONETARY -#error LC_MONETARY not defined -#endif - -#ifndef LC_NUMERIC -#error LC_NUMERIC not defined -#endif - -#ifndef LC_TIME -#error LC_TIME not defined -#endif +#include "locale.d" void test_locale_h(void) { struct lconv *lc; - int locale_categories[] = { - LC_ALL, - LC_COLLATE, - LC_CTYPE, - LC_MONETARY, - LC_NUMERIC, - LC_TIME, - }; testing_header("locale.h"); -- cgit v1.2.1