# HG changeset patch
# User Jim Blandy <jimb@redhat.com>
# Date 740266945 0
# Node ID 07ba80692381d26968a40723b94fd3da2ff770e5
# Parent  36f561d76b120fbab5db8c5dfb9708f6a60f2e2f
	* unexec.c [HPUX] (sbrk): This returns a void *.

diff -r 36f561d76b12 -r 07ba80692381 src/unexec.c
--- a/src/unexec.c	Wed Jun 16 21:40:36 1993 +0000
+++ b/src/unexec.c	Wed Jun 16 21:42:25 1993 +0000
@@ -207,11 +207,15 @@
 
 #else /* not COFF */
 
+#ifdef HPUX
+extern void *sbrk ();
+#else
 #ifdef __STDC__
 extern void *sbrk ();
 #else
 extern char *sbrk ();
-#endif
+#endif /* __STDC__ */
+#endif /* HPUX */
 
 #define SYMS_START ((long) N_SYMOFF (ohdr))