]> mj.ucw.cz Git - libucw.git/blobdiff - ucw/asort-test.c
Opt: Added OPT_HELP_COLUMNS
[libucw.git] / ucw / asort-test.c
index 351e65550d479aa841226982443b821650e82eae..c35db743d1551cc2e3b577d4053d3ba0ea03eb82 100644 (file)
@@ -28,7 +28,7 @@ static struct elt array[N];
 
 static void generate(void)
 {
-  uns i;
+  uint i;
   for (i=0; i<N; i++)
 #if 0
     ASORT_ELT(i) = N-i-1;
@@ -43,7 +43,7 @@ static int errors = 0;
 
 static void check(void)
 {
-  uns i;
+  uint i;
   for (i=0; i<N; i++)
     if (ASORT_ELT(i) != i)
     {