Module Name: src Committed By: christos Date: Sat Sep 28 14:24:59 UTC 2024
Modified Files: src/lib/libc/include: extern.h Log Message: need <sys/types.h> for __off_t in gnu11 mode. To generate a diff of this commit: cvs rdiff -u -r1.30 -r1.31 src/lib/libc/include/extern.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/lib/libc/include/extern.h diff -u src/lib/libc/include/extern.h:1.30 src/lib/libc/include/extern.h:1.31 --- src/lib/libc/include/extern.h:1.30 Mon Jul 8 18:14:31 2024 +++ src/lib/libc/include/extern.h Sat Sep 28 10:24:59 2024 @@ -1,4 +1,4 @@ -/* $NetBSD: extern.h,v 1.30 2024/07/08 22:14:31 christos Exp $ */ +/* $NetBSD: extern.h,v 1.31 2024/09/28 14:24:59 christos Exp $ */ /* * Copyright (c) 1997 Christos Zoulas. All rights reserved. @@ -24,6 +24,7 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ +#include <sys/types.h> /* __off_t */ #include <stdarg.h> #include <ucontext.h>