1/**
2 * \file
3 * This file creates queries for the speed test
4 */
5#include <stdio.h>
6#include <stdlib.h>
7/** main program to create queries, pass the number of them. */
8int main(int argc, char** argv) {
9        int i;
10        int max = atoi(argv[1]);
11        for(i=0; i<max; i++)
12                printf("a%8.8d.example.com IN A\n", i);
13        return 0;
14}
15