aboutsummaryrefslogtreecommitdiffstats
path: root/asn1c/tests/check-43.c
diff options
context:
space:
mode:
authorLev Walkin <vlm@lionet.info>2014-09-11 01:28:57 -0700
committerLev Walkin <vlm@lionet.info>2014-09-11 01:28:57 -0700
commite0d321a6502c3a3f567f16430bfa94cdefc63a53 (patch)
tree3e34ef803f182f5a1a3b8ca0469e4bce4e7a7552 /asn1c/tests/check-43.c
parent5809ec65dd1b76b4f7bbd1c08ba93665a7a3b847 (diff)
version 0.9.26
Diffstat (limited to 'asn1c/tests/check-43.c')
-rw-r--r--asn1c/tests/check-43.c27
1 files changed, 0 insertions, 27 deletions
diff --git a/asn1c/tests/check-43.c b/asn1c/tests/check-43.c
deleted file mode 100644
index 4a613854..00000000
--- a/asn1c/tests/check-43.c
+++ /dev/null
@@ -1,27 +0,0 @@
-#undef NDEBUG
-#include <stdio.h>
-#include <stdlib.h>
-#include <sys/types.h>
-#include <string.h>
-#include <assert.h>
-
-#include <Test-structure-1.h>
-#include <Choice-1.h>
-
-int
-main(int ac, char **av) {
- Test_structure_1_t ts1;
- Choice_1_t cs1;
-
- (void)ac; /* Unused argument */
- (void)av; /* Unused argument */
-
- memset(&ts1, 0, sizeof(ts1));
- memset(&cs1, 0, sizeof(cs1));
-
- /*
- * No plans to fill it up: just checking whether it compiles or not.
- */
-
- return 0;
-}