1
0
Fork 0
mirror of https://git.freebsd.org/ports.git synced 2025-06-20 20:20:30 -04:00
ports/x11-wm/olvwm/files/patch-gettext.c
Cy Schubert fbde5c5dd6 Fix build under 10-CURRENT.
Split old-style patch files into current standard individual patch files.
2013-09-18 05:16:46 +00:00

18 lines
414 B
C

--- gettext.c.orig Sun Sep 29 02:29:20 2002
+++ gettext.c Sun Sep 29 02:29:47 2002
@@ -17,12 +17,14 @@
#define bzero(a,b) memset(a,0,b)
#endif
-char *malloc(), *strdup();
char * dgettext();
char *_gettext();
char *in_path();
+#ifndef __FreeBSD__
+char *malloc(), *strdup();
char *fgets(), *getenv();
caddr_t mmap(), calloc();
+#endif
#ifdef NOT
static struct domain_binding *firstbind=0, *lastbind=0;