Move LINEBUFSZ to be with its friends in misc.h.
authorkrw <krw@openbsd.org>
Sat, 25 Mar 2023 20:34:28 +0000 (20:34 +0000)
committerkrw <krw@openbsd.org>
Sat, 25 Mar 2023 20:34:28 +0000 (20:34 +0000)
Nuke unused HELPBUFSZ.

No functional change.

sbin/fdisk/misc.h
sbin/fdisk/user.h

index 69586e3..640510f 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: misc.h,v 1.49 2022/04/20 20:43:32 krw Exp $   */
+/*     $OpenBSD: misc.h,v 1.50 2023/03/25 20:34:28 krw Exp $   */
 
 /*
  * Copyright (c) 1997 Tobias Weingartner
@@ -29,6 +29,7 @@ struct unit_type {
 #define        WHITESPACE      " \f\n\r\t\v"
 #define        UNTRIMMED       0
 #define        TRIMMED         1
+#define        LINEBUFSZ       100
 
 double          units_size(const char *, const uint64_t,
     const struct unit_type **);
index e358f81..6f5d501 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: user.h,v 1.24 2022/07/25 17:45:16 krw Exp $   */
+/*     $OpenBSD: user.h,v 1.25 2023/03/25 20:34:28 krw Exp $   */
 
 /*
  * Copyright (c) 1997 Tobias Weingartner
@@ -16,9 +16,6 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-#define        LINEBUFSZ       100
-#define        HELPBUFSZ       80
-
 void           USER_edit(const uint64_t, const uint64_t);
 void           USER_print_disk(const int);
 void           USER_help(const struct mbr *);