diff options
Diffstat (limited to 'coreutils/dd.c')
-rw-r--r-- | coreutils/dd.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/coreutils/dd.c b/coreutils/dd.c index a2dc1c3..b370387 100644 --- a/coreutils/dd.c +++ b/coreutils/dd.c @@ -185,6 +185,10 @@ extern int dd_main (int argc, char **argv) } //lseek(inFd, skipBlocks*blockSize, SEEK_SET); + // + //TODO: Convert to using fullRead & fullWrite + // from utilitity.c + // -Erik while (outTotal < count * blockSize) { inCc = read (inFd, buf, blockSize); if (inCc < 0) { |