Add x86 32 bit vDSO time function support
[platform/upstream/glibc.git] / iconv / tst-iconv1.c
index d40fe53..0609f50 100644 (file)
@@ -1,11 +1,12 @@
 /* Test case by yaoz@nih.gov.  */
 
 #include <iconv.h>
+#include <stddef.h>
 #include <stdio.h>
 #include <string.h>
 
-int
-main (void)
+static int
+do_test (void)
 {
   char utf8[5];
   wchar_t ucs4[5];
@@ -41,3 +42,6 @@ main (void)
 
   return 0;
 }
+
+#define TEST_FUNCTION do_test ()
+#include "../test-skeleton.c"