#include #include #include #include int main(int argc, char *argv[]) { long bpw; long writes; char *buf; long i; if (argc!=3) { fprintf(stderr,"Usage: %s ",argv[0]); return 1; } bpw = atol(argv[1]); writes = atol(argv[2]); buf = malloc(bpw); memset(buf,'a',bpw); for (i=0; i