blob: cfdd600697ef463e3f67b9bd5af83124827a03ea [file] [log] [blame]
vlm6f74b0f2005-03-04 23:23:50 +00001#undef NDEBUG
2#include <stdio.h>
3#include <stdlib.h>
4#include <sys/types.h>
5#include <string.h>
6#include <assert.h>
7
8#include <Int5.h>
9#include <Str4.h>
10#include <Utf8-4.h>
11#include <VisibleIdentifier.h>
12
13int
14main(int ac, char **av) {
15 (void)ac; /* Unused argument */
16 (void)av; /* Unused argument */
17
18 /*
19 * No plans to fill it up: just checking whether it compiles or not.
20 */
21
22 return 0;
23}