Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-1-4]: src/distrib/utils/sysinst Pull up revision 1.50 (requested ...
details: https://anonhg.NetBSD.org/src/rev/17d30c5cf61d
branches: netbsd-1-4
changeset: 470191:17d30c5cf61d
user: he <he%NetBSD.org@localhost>
date: Sun Jan 23 12:56:43 2000 +0000
description:
Pull up revision 1.50 (requested by mycroft):
Get rid of the side and bottom borders on command output windows,
so this works better on a terminal. Also fix bugs that could
cause the display to be partially blanked after a suspend/resume.
diffstat:
distrib/utils/sysinst/defs.h | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
diffs (19 lines):
diff -r 801f036042f0 -r 17d30c5cf61d distrib/utils/sysinst/defs.h
--- a/distrib/utils/sysinst/defs.h Sun Jan 23 12:53:23 2000 +0000
+++ b/distrib/utils/sysinst/defs.h Sun Jan 23 12:56:43 2000 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: defs.h,v 1.36.2.5 2000/01/23 12:52:49 he Exp $ */
+/* $NetBSD: defs.h,v 1.36.2.6 2000/01/23 12:56:43 he Exp $ */
/*
* Copyright 1997 Piermont Information Systems Inc.
@@ -43,6 +43,9 @@
#define FSTYPENAMES
#include <sys/disklabel.h>
+#define min(a,b) (a < b ? a : b)
+#define max(a,b) (a > b ? a : b)
+
/* Define for external varible use */
#ifdef MAIN
#define EXTERN
Home |
Main Index |
Thread Index |
Old Index