*** empty log message ***

This commit is contained in:
Mark Borgerding 2006-03-14 02:45:18 +00:00
parent 77968cd25d
commit 51a73f7ccc

View File

@ -46,7 +46,7 @@ int main(int argc,char ** argv)
pstats_init(); pstats_init();
while (1) { while (1) {
int c = getopt (argc, argv, "n:ix:"); int c = getopt (argc, argv, "n:ix:h");
if (c == -1) if (c == -1)
break; break;
switch (c) { switch (c) {
@ -59,6 +59,11 @@ int main(int argc,char ** argv)
case 'i': case 'i':
isinverse = 1; isinverse = 1;
break; break;
case 'h':
case '?':
default:
fprintf(stderr,"options:\n-n N: complex fft length\n-i: inverse\n-x N: number of ffts to compute\n"
"");
} }
} }