e2fsprogs/e2fsck/extend.c
Theodore Ts'o d1154eb460 Shorten compile commands run by the build system
The DEFS line in MCONFIG had gotten so long that it exceeded 4k, and
this was starting to cause some tools heartburn.  It also made "make
V=1" almost useless, since trying to following the individual commands
run by make was lost in the noise of all of the defines.

So fix this by putting the configure-generated defines in lib/config.h
and the directory pathnames to lib/dirpaths.h.

In addition, clean up some vestigal defines in configure.in and in the
Makefiles to further shorten the cc command lines.

Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
2011-09-18 17:34:37 -04:00

83 lines
1.5 KiB
C

/*
* extend.c --- extend a file so that it has at least a specified
* number of blocks.
*
* Copyright (C) 1993, 1994, 1995 Theodore Ts'o.
*
* This file may be redistributed under the terms of the GNU Public
* License.
*/
#include "config.h"
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <fcntl.h>
#include "../misc/nls-enable.h"
static void usage(char *progname)
{
fprintf(stderr, _("%s: %s filename nblocks blocksize\n"),
progname, progname);
exit(1);
}
int main(int argc, char **argv)
{
char *filename;
int nblocks, blocksize;
int fd;
char *block;
int ret;
if (argc != 4)
usage(argv[0]);
filename = argv[1];
nblocks = strtoul(argv[2], 0, 0) - 1;
blocksize = strtoul(argv[3], 0, 0);
if (nblocks < 0) {
fprintf(stderr, _("Illegal number of blocks!\n"));
exit(1);
}
block = malloc(blocksize);
if (block == 0) {
fprintf(stderr, _("Couldn't allocate block buffer (size=%d)\n"),
blocksize);
exit(1);
}
memset(block, 0, blocksize);
fd = open(filename, O_RDWR);
if (fd < 0) {
perror(filename);
exit(1);
}
ret = lseek(fd, nblocks*blocksize, SEEK_SET);
if (ret < 0) {
perror("lseek");
exit(1);
}
ret = read(fd, block, blocksize);
if (ret < 0) {
perror("read");
exit(1);
}
ret = lseek(fd, nblocks*blocksize, SEEK_SET);
if (ret < 0) {
perror("lseek #2");
exit(1);
}
ret = write(fd, block, blocksize);
if (ret < 0) {
perror("read");
exit(1);
}
exit(0);
}