diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2021-03-17 06:29:33 (EDT) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2021-03-17 06:29:33 (EDT) |
commit | a4b099990584ed2157bd0812a17cf1f71bf14674 (patch) | |
tree | 8f245561fd360d4cd7e4ee24de365e5de087a932 | |
parent | fc436f15ee166fc4e2f967b8ff725cf6f0e3a782 (diff) | |
download | dodge-balls-a4b099990584ed2157bd0812a17cf1f71bf14674.zip dodge-balls-a4b099990584ed2157bd0812a17cf1f71bf14674.tar.gz dodge-balls-a4b099990584ed2157bd0812a17cf1f71bf14674.tar.bz2 |
db_lc_messages_get(): Remove function
-rw-r--r-- | src/locale.c | 6 | ||||
-rw-r--r-- | src/locale.h | 1 |
2 files changed, 0 insertions, 7 deletions
diff --git a/src/locale.c b/src/locale.c index f336484..fbef90d 100644 --- a/src/locale.c +++ b/src/locale.c @@ -24,12 +24,6 @@ #include "locale.h" #include "output.h" -const char * -db_lc_messages_get(void) -{ - return setlocale(LC_MESSAGES, ""); -} - int db_locale_match(char *loc) { diff --git a/src/locale.h b/src/locale.h index 7813370..1395920 100644 --- a/src/locale.h +++ b/src/locale.h @@ -20,7 +20,6 @@ #ifndef DB_LOCALE_H_ #define DB_LOCALE_H_ -const char *db_lc_messages_get(void); int db_locale_match(char *loc); #endif /* DB_LOCALE_H_ */ |