8fb9ba4edf
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
11 lines
207 B
C
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;
|
|
|