Add some error definitions for FreeBSD action extensions.

This commit is contained in:
John Birrell 2008-04-26 04:40:38 +00:00
parent f1e56186ea
commit 79673c5671
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=178560

View File

@ -235,7 +235,11 @@ typedef enum {
D_FREOPEN_INVALID, /* frename() filename is invalid */
D_LQUANT_MATCHBASE, /* lquantize() mismatch on base */
D_LQUANT_MATCHLIM, /* lquantize() mismatch on limit */
D_LQUANT_MATCHSTEP /* lquantize() mismatch on step */
D_LQUANT_MATCHSTEP, /* lquantize() mismatch on step */
D_PRINTM_ADDR, /* printm() memref bad type */
D_PRINTM_SIZE, /* printm() size bad type */
D_PRINTT_ADDR, /* printt() typeref bad type */
D_PRINTT_SIZE /* printt() size bad type */
} dt_errtag_t;
extern const char *dt_errtag(dt_errtag_t);