mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-03 09:48:00 -04:00
17 lines
459 B
Plaintext
17 lines
459 B
Plaintext
$NetBSD: patch-aa,v 1.2 2013/09/09 17:45:58 drochner Exp $
|
|
|
|
stdarg(3) is required by various functions that can be called with variable
|
|
argument lists.
|
|
|
|
--- src/intrfn.h.orig 2013-05-17 09:34:03.000000000 +0000
|
|
+++ src/intrfn.h
|
|
@@ -39,6 +39,8 @@ extern "C" {
|
|
#include <curses.h>
|
|
#endif
|
|
|
|
+#include <stdarg.h>
|
|
+
|
|
void aff_copy(WINDOW *window);
|
|
void aff_copy_short(WINDOW *window);
|
|
void aff_LBA2CHS(const disk_t *disk_car, const unsigned long int pos_LBA);
|