mirror of
https://git.freebsd.org/ports.git
synced 2025-05-22 11:48:35 -04:00
by adding needed #includes, adding return statements to non-void functions and declaring functions returning a int instead of void if they do return an return code. - start using one central safemalloc. - do not mangle pointers which makes FvwmWinList work on amd64/7-STABLE again. PR: 132571 Submitted by: Bjoern A. Zeeb
10 lines
294 B
C
10 lines
294 B
C
--- ./xpmroot/xpmroot.c.orig 1994-11-15 14:06:38.000000000 +0000
|
|
+++ ./xpmroot/xpmroot.c 2009-03-11 09:42:51.000000000 +0000
|
|
@@ -11,6 +11,7 @@
|
|
#include <stdio.h>
|
|
#include <signal.h>
|
|
#include <string.h>
|
|
+#include <stdlib.h>
|
|
#include <X11/Xos.h>
|
|
#include <X11/Xatom.h>
|
|
#include <X11/xpm.h>
|