diff options
author | Theodore Ts'o <tytso@mit.edu> | 2000-04-03 16:22:35 +0000 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2000-04-03 16:22:35 +0000 |
commit | 373b8337c7b6c6243810be250083fa4773891e92 (patch) | |
tree | 9da345da9770fb1a5c6b355cfc20d27824069ea3 /resize | |
parent | 691d3353c21a9c8c38d57440808ad7a53827b7dc (diff) | |
download | e2fsprogs-373b8337c7b6c6243810be250083fa4773891e92.tar.gz |
Many files:
badblocks.c, dumpe2fs.c, e2label.c, mke2fs.c, tune2fs.c, uuidgen.c:
For platforms that don't define optarg.h, manually define optarg and
optind.
ChangeLog, main.c:
main.c: For platforms that don't define optarg.h, manually define
optarg and optind.
ChangeLog, unix.c:
unix.c: For platforms that don't define optarg.h, manually define
optarg and optind.
Diffstat (limited to 'resize')
-rw-r--r-- | resize/ChangeLog | 5 | ||||
-rw-r--r-- | resize/main.c | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/resize/ChangeLog b/resize/ChangeLog index ff00270f..90c0a6c0 100644 --- a/resize/ChangeLog +++ b/resize/ChangeLog @@ -1,3 +1,8 @@ +2000-04-03 Theodore Ts'o <tytso@valinux.com> + + * main.c: For platforms that don't define optarg.h, manually + define optarg and optind. + 2000-02-02 Theodore Ts'o <tytso@valinux.com> * resize2fs.h: Remove unneeded #include of linux/fs.h diff --git a/resize/main.c b/resize/main.c index 77fac23e..3abff635 100644 --- a/resize/main.c +++ b/resize/main.c @@ -10,6 +10,9 @@ #ifdef HAVE_GETOPT_H #include <getopt.h> +#else +extern char *optarg; +extern int optind; #endif #include <fcntl.h> #include <sys/ioctl.h> |