mirror of
https://github.com/neovim/neovim.git
synced 2026-05-02 12:04:58 +00:00
14 lines
250 B
C
14 lines
250 B
C
#pragma once
|
|
|
|
#include <errno.h>
|
|
#include <iconv.h>
|
|
|
|
// define some missing constants if necessary
|
|
#ifndef EILSEQ
|
|
# define EILSEQ 123
|
|
#endif
|
|
#define ICONV_ERRNO errno
|
|
#define ICONV_E2BIG E2BIG
|
|
#define ICONV_EINVAL EINVAL
|
|
#define ICONV_EILSEQ EILSEQ
|