Module Name: src
Committed By: rillig
Date: Thu Mar 13 06:36:20 UTC 2025
Modified Files:
src/include: ucontext.h
Log Message:
ucontext.h: suppress lint warning about missing prototype
To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/include/ucontext.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/include/ucontext.h
diff -u src/include/ucontext.h:1.11 src/include/ucontext.h:1.12
--- src/include/ucontext.h:1.11 Sun Feb 4 01:13:45 2018
+++ src/include/ucontext.h Thu Mar 13 06:36:20 2025
@@ -1,4 +1,4 @@
-/* $NetBSD: ucontext.h,v 1.11 2018/02/04 01:13:45 mrg Exp $ */
+/* $NetBSD: ucontext.h,v 1.12 2025/03/13 06:36:20 rillig Exp $ */
/*-
* Copyright (c) 1999 The NetBSD Foundation, Inc.
@@ -42,6 +42,7 @@ int setcontext(const ucontext_t *);
#pragma GCC diagnostic push
#ifndef __cplusplus
#pragma GCC diagnostic ignored "-Wstrict-prototypes"
+/* LINTED 287 "function declaration is not a prototype" */
#endif
void makecontext(ucontext_t *, void (*)(), int, ...);
#pragma GCC diagnostic pop