]> git.ipfire.org Git - thirdparty/e2fsprogs.git/commitdiff
ChangeLog, subst.c:
authorTheodore Ts'o <tytso@mit.edu>
Mon, 3 Apr 2000 16:16:46 +0000 (16:16 +0000)
committerTheodore Ts'o <tytso@mit.edu>
Mon, 3 Apr 2000 16:16:46 +0000 (16:16 +0000)
  subst.c: For platforms that don't define optarg.h, manually define
   optarg and optind.

util/ChangeLog
util/subst.c

index 600cf137f6c37bf08c22ce248e11f72877eb0678..891b21f63488b9d6f46faac58a7aafd6d948278a 100644 (file)
@@ -1,3 +1,8 @@
+2000-04-03  Theodore Ts'o  <tytso@valinux.com>
+
+       * subst.c: For platforms that don't define optarg.h, manually
+               define optarg and optind.
+
 1999-11-19    <tytso@valinux.com>
 
        * Makefile.in (distclean): Remove TAGS and Makefile.in.old from
index c8a2b23a4c2f867269d9ec95f3ac00798e0e3dcb..94444ca691d495ff793b2c4590eb006014cb9b04 100644 (file)
@@ -14,6 +14,9 @@
 
 #ifdef HAVE_GETOPT_H
 #include <getopt.h>
+#else
+extern char *optarg;
+extern int optind;
 #endif