aboutsummaryrefslogtreecommitdiffstats
path: root/asn1c
diff options
context:
space:
mode:
authorLev Walkin <vlm@lionet.info>2005-08-18 13:38:19 +0000
committerLev Walkin <vlm@lionet.info>2005-08-18 13:38:19 +0000
commitb85a8135dae955c09b23197f5497b8ff911d083d (patch)
treeafc3f841706d6e89951802d5d00b2442f2163f84 /asn1c
parente44ea0bdd9f5dd291c1fa3b7b6dbcedddd6c51df (diff)
automatic dependency tracking
Diffstat (limited to 'asn1c')
-rw-r--r--asn1c/tests/check-92.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/asn1c/tests/check-92.c b/asn1c/tests/check-92.c
new file mode 100644
index 00000000..caa367fd
--- /dev/null
+++ b/asn1c/tests/check-92.c
@@ -0,0 +1,24 @@
+#undef NDEBUG
+#include <stdio.h>
+#include <stdlib.h>
+#include <sys/types.h>
+#include <string.h>
+#include <assert.h>
+
+#include <Everything.h>
+
+int
+main(int ac, char **av) {
+ Everything_t t;
+
+ (void)ac; /* Unused argument */
+ (void)av; /* Unused argument */
+
+ memset(&t, 0, sizeof(t));
+
+ /*
+ * No plans to fill it up: just checking whether it compiles or not.
+ */
+
+ return 0;
+}