aboutsummaryrefslogtreecommitdiffstats
path: root/libasn1compiler/asn1c_out.h
diff options
context:
space:
mode:
authorLev Walkin <vlm@lionet.info>2004-08-11 07:17:22 +0000
committerLev Walkin <vlm@lionet.info>2004-08-11 07:17:22 +0000
commit64399727b7324e8252b902e2c0d0f18ab826f88e (patch)
tree983959c7bdffee2608e72e91fc78a89215077ff6 /libasn1compiler/asn1c_out.h
parent2c962736991d1a2759a38077335662f7936af2c2 (diff)
Win32 portability fixes
Diffstat (limited to 'libasn1compiler/asn1c_out.h')
-rw-r--r--libasn1compiler/asn1c_out.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/libasn1compiler/asn1c_out.h b/libasn1compiler/asn1c_out.h
index e989f445..51582d4c 100644
--- a/libasn1compiler/asn1c_out.h
+++ b/libasn1compiler/asn1c_out.h
@@ -13,6 +13,8 @@ typedef struct out_chunk {
typedef struct compiler_streams {
enum {
+ OT_IGNORE = -1,
+ OT_ASSERT = 0,
OT_INCLUDES, /* #include files */
OT_DEPS, /* Dependencies (other than #includes) */
OT_TYPE_DECLS, /* Type declarations */
@@ -25,7 +27,7 @@ typedef struct compiler_streams {
} compiler_streams_t;
static char *_compiler_stream2str[] __attribute__ ((unused))
- = { "INCLUDES", "DEPS", "TYPE-DECLS", "FUNC-DECLS", "STAT-DEFS", "CODE" };
+ = { "ASSERT", "INCLUDES", "DEPS", "TYPE-DECLS", "FUNC-DECLS", "STAT-DEFS", "CODE" };
int asn1c_compiled_output(arg_t *arg, const char *fmt, ...);