Use iconv on linux

This commit is contained in:
Chase
2019-01-12 16:54:57 -06:00
committed by Jon Trulson
parent b9f352df59
commit 4d7f9df692
6 changed files with 5 additions and 34 deletions

View File

@@ -106,13 +106,6 @@ typedef enum {B_FALSE, B_TRUE} boolean_t;
#if defined(__linux__) || defined(CSRG_BASED)
typedef enum {B_FALSE, B_TRUE} boolean_t;
#define MAXNAMELEN 256
#if !defined(CSRG_BASED)
#define iconv_t int
#define iconv_open(a, b) ((iconv_t) -1)
#define iconv(a, b, c, d, e) ((size_t) 0)
#define iconv_close(a) (0)
#endif
#endif