Whamcloud - gitweb
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 6db17ff..fd050e7 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 30b1921..b6c2775 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