]> git.ipfire.org Git - thirdparty/e2fsprogs.git/commitdiff
lib/et/internal.h: Remove declaration of perror. All modern systems
authorTheodore Ts'o <tytso@mit.edu>
Tue, 24 Sep 2002 03:51:57 +0000 (23:51 -0400)
committerTheodore Ts'o <tytso@mit.edu>
Tue, 24 Sep 2002 03:51:57 +0000 (23:51 -0400)
can be expected to define perror() these days.

lib/et/ChangeLog
lib/et/internal.h

index 6db17fffd64b8cf08830c0b81dcd3725eebf09d0..fd050e7744d5d34094deef91745949e5f7566fed 100644 (file)
@@ -1,3 +1,8 @@
+2002-09-23  Theodore Ts'o  <tytso@mit.edu>
+
+       * internal.h: Remove declaration of perror.  All modern systems
+               can be expected to define perror() these days.
+
 2001-08-31  Theodore Tso  <tytso@thunk.org>
 
        * Release of E2fsprogs 1.28
index 30b19216de6c7c42069dc2eb8558f08776bf19aa..b6c2775518879da4d527abce9946602b6c2e2be7 100644 (file)
 extern char const * const sys_errlist[];
 extern const int sys_nerr;
 #endif
-
-/* AIX and Ultrix have standard conforming header files. */
-#if !defined(ultrix) && !defined(_AIX)
-#ifdef __STDC__
-void perror (const char *);
-#endif
-#endif