$NetBSD: patch-readwrite.h,v 1.2 2023/11/16 22:55:37 schmonz Exp $ Add missing includes. Add missing prototype. --- readwrite.h.orig 1999-11-09 07:23:46.000000000 +0000 +++ readwrite.h @@ -1,7 +1,9 @@ #ifndef READWRITE_H #define READWRITE_H -extern int read(); -extern int write(); +#include +#include + +void out_puts(char *s); #endif