diff options
author | Theodore Ts'o <tytso@mit.edu> | 2002-09-23 23:51:57 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2002-09-23 23:51:57 -0400 |
commit | d25f8cf6463d50c870de71cb5a4995bf3fe1dfea (patch) | |
tree | 965e9da72d11cd41b225bf11cc9f78a293dc332c /lib | |
parent | 843049c4dbfe8a0dd4332569eff0ac93529e3324 (diff) | |
download | e2fsprogs-d25f8cf6463d50c870de71cb5a4995bf3fe1dfea.tar.gz |
lib/et/internal.h: Remove declaration of perror. All modern systems
can be expected to define perror() these days.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/et/ChangeLog | 5 | ||||
-rw-r--r-- | lib/et/internal.h | 7 |
2 files changed, 5 insertions, 7 deletions
diff --git a/lib/et/ChangeLog b/lib/et/ChangeLog index 6db17fff..fd050e77 100644 --- a/lib/et/ChangeLog +++ b/lib/et/ChangeLog @@ -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 diff --git a/lib/et/internal.h b/lib/et/internal.h index 30b19216..b6c27755 100644 --- a/lib/et/internal.h +++ b/lib/et/internal.h @@ -21,10 +21,3 @@ 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 |