aboutsummaryrefslogtreecommitdiffstats
path: root/asn1c/tests/check-src/check-73.c
diff options
context:
space:
mode:
Diffstat (limited to 'asn1c/tests/check-src/check-73.c')
-rw-r--r--asn1c/tests/check-src/check-73.c28
1 files changed, 28 insertions, 0 deletions
diff --git a/asn1c/tests/check-src/check-73.c b/asn1c/tests/check-src/check-73.c
new file mode 100644
index 00000000..9d331415
--- /dev/null
+++ b/asn1c/tests/check-src/check-73.c
@@ -0,0 +1,28 @@
+#undef NDEBUG
+#include <stdio.h>
+#include <stdlib.h>
+#include <sys/types.h>
+#include <string.h>
+#include <assert.h>
+
+#include <Epyt.h>
+
+int
+main(int ac, char **av) {
+ Type_t t;
+ Epyt_t ept;
+ Ypet_t ypt;
+
+ (void)ac; /* Unused argument */
+ (void)av; /* Unused argument */
+
+ memset(&t, 0, sizeof(t));
+ memset(&ept, 0, sizeof(ept));
+ memset(&ypt, 0, sizeof(ypt));
+
+ /*
+ * No plans to fill it up: just checking whether it compiles or not.
+ */
+
+ return 0;
+}