Files
ports/math/csdp/files/patch-lib_user__exit.c
T
Robert Clausecker 8fb9ba4edf math/csdp: add missing include directive
gcc treats an implicit declaration as an error these days.  Shut it up
by supplying the declaration of printf() through <stdio.h>.

Approved by:	portmgr (build fix blanket)
MFH:		2026Q2
2026-06-22 10:41:45 +02:00

11 lines
207 B
C

--- lib/user_exit.c.orig 2026-06-21 09:49:29 UTC
+++ lib/user_exit.c
@@ -13,6 +13,7 @@
#include <sys/time.h>
#include <sys/resource.h>
#include <signal.h>
+#include <stdio.h>
int sigterm_signaled=0;