summaryrefslogtreecommitdiff
path: root/module/errors.h
blob: a5995f50d7de6cd7bc64310d88b1222856416897 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef _ICONV_ERRORS_H_
#define _ICONV_ERRORS_H_

#define ERROR_BASE 0x81b900

#define ICONV_NOMEM (ERROR_BASE+0)
#define ICONV_INVAL (ERROR_BASE+1)
#define ICONV_2BIG  (ERROR_BASE+2)
#define ICONV_ILSEQ (ERROR_BASE+3)

#endif