autoupdate
[gnulib.git] / tests / test-times.c
index 377a139..dcdcdb4 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);