test-pwrite.c: Remove unused variable declaration.
[pspp] / tests / test-times.c
index 377a1392c214010fea6404d33b2329e23ae15509..dcdcdb466c53c86fba53b16d4d14a99ae50040eb 100644 (file)
@@ -1,5 +1,5 @@
 /* Test of times function.
-   Copyright (C) 2008 Free Software Foundation, Inc.
+   Copyright (C) 2008, 2009, 2010 Free Software Foundation, Inc.
 
    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
 #include <config.h>
 
 #include <sys/times.h>
+
+#include "signature.h"
+SIGNATURE_CHECK (times, clock_t, (struct tms *));
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <stdint.h>
@@ -72,7 +76,7 @@ main (int argc, char *argv[])
       base = malloc (size * sizeof (double));
 
       for (i = 0; i < size; i++)
-       base[i] = i * i;
+        base[i] = i * i;
 
       qsort (base, size, sizeof (double), doublecmp);