mirror of
https://github.com/NLnetLabs/unbound.git
synced 2026-01-07 15:29:36 -05:00
9 lines
226 B
C
9 lines
226 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
int main(int argc, char** argv) {
|
|
int i;
|
|
int max = atoi(argv[1]);
|
|
for(i=0; i<max; i++)
|
|
printf("a%8.8d.example.com IN A\n", i);
|
|
return 0;
|
|
}
|