fixes wrong type for iconv

This fixes issue #178, on FreeBSD the type should be `char **`.

original commit: cc60b7d951770b0635186333f1c55d1704686630
This commit is contained in:
Daniel Brunner 2017-06-02 16:18:04 +02:00
parent a5183d3214
commit ce437c7488

View File

@ -140,7 +140,7 @@ typedef int tputsputcchar;
#define NSECATIME(sb) (sb).st_atimespec.tv_nsec
#define NSECCTIME(sb) (sb).st_ctimespec.tv_nsec
#define NSECMTIME(sb) (sb).st_mtimespec.tv_nsec
#define ICONV_INBUF_TYPE const char **
#define ICONV_INBUF_TYPE char **
#define UNUSED __attribute__((__unused__))
#endif