summaryrefslogtreecommitdiffstats
path: root/bin/rmail
diff options
context:
space:
mode:
authorcharnier <charnier@FreeBSD.org>1997-06-06 06:46:27 +0000
committercharnier <charnier@FreeBSD.org>1997-06-06 06:46:27 +0000
commit958b099adb8022aebc698062573c1403497083cf (patch)
tree7c713d84aa32f5c5eb56e0498eb346edfe513700 /bin/rmail
parentae739990ebc3fe1f531bc508a744131e2a35ea78 (diff)
downloadFreeBSD-src-958b099adb8022aebc698062573c1403497083cf.zip
FreeBSD-src-958b099adb8022aebc698062573c1403497083cf.tar.gz
Err(3) was locally defined (for portability reasons). Use #ifdef 0/#endif
to hide this so libc is kept instead.
Diffstat (limited to 'bin/rmail')
-rw-r--r--bin/rmail/rmail.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/bin/rmail/rmail.c b/bin/rmail/rmail.c
index f80cd3b..bf50f4b 100644
--- a/bin/rmail/rmail.c
+++ b/bin/rmail/rmail.c
@@ -30,7 +30,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: rmail.c,v 1.9 1997/02/22 14:05:31 peter Exp $
+ * $Id: rmail.c,v 1.10 1997/03/28 15:24:35 imp Exp $
*/
#ifndef lint
@@ -80,7 +80,9 @@ static char const sccsid[] = "@(#)rmail.c 8.1 (Berkeley) 5/31/93";
#include <sysexits.h>
#include <unistd.h>
+#ifdef 0
void err __P((int, const char *, ...));
+#endif
void usage __P((void));
int
@@ -350,6 +352,7 @@ usage()
exit(EX_USAGE);
}
+#ifdef 0
#ifdef __STDC__
#include <stdarg.h>
#else
@@ -378,3 +381,4 @@ err(eval, fmt, va_alist)
(void)fprintf(stderr, "\n");
exit(eval);
}
+#endif
OpenPOWER on IntegriCloud