1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-01 22:05:08 +00:00
freebsd-ports/x11-wm/xfce/files/patch-aa
Steve Price d0b005006e Don't define the second argument of bzero(3) as being an int since on the
Alpha sizeof(int) != sizeof(size_t) and this port wasn't building because
of it.
1999-09-27 02:56:13 +00:00

12 lines
343 B
Plaintext

--- libs/alpha_header.h.orig Sat Sep 18 17:57:24 1999
+++ libs/alpha_header.h Sat Sep 18 17:58:58 1999
@@ -12,6 +12,8 @@
extern size_t strlen (char *);
#endif
+#ifndef __FreeBSD__
extern void bzero (char *, int);
+#endif
extern int gethostname (char *, int);
/**************************************************************************/