1998-04-09 08:13:33 +00:00
|
|
|
diff -cb ../../../libhelp-1.8.1/libhtmlw/HTML-PSformat.c libhtmlw/HTML-PSformat.c
|
|
|
|
*** ../../../libhelp-1.8.1/libhtmlw/HTML-PSformat.c Mon Dec 26 12:15:57 1994
|
1999-05-31 04:57:17 +00:00
|
|
|
--- libhtmlw/HTML-PSformat.c Sun May 30 18:26:14 1999
|
1998-04-09 08:13:33 +00:00
|
|
|
***************
|
1999-05-31 04:57:17 +00:00
|
|
|
*** 47,57 ****
|
1998-04-09 08:13:33 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <math.h>
|
|
|
|
! #include <malloc.h>
|
|
|
|
#include "HTMLP.h"
|
1999-05-31 04:57:17 +00:00
|
|
|
|
1998-04-09 08:13:33 +00:00
|
|
|
/* Fix thanks to robm. */
|
1999-05-31 04:57:17 +00:00
|
|
|
! #ifdef __alpha
|
|
|
|
#include <Xm/VaSimple.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
--- 47,61 ----
|
1998-04-09 08:13:33 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <math.h>
|
|
|
|
! #ifdef __FreeBSD__
|
|
|
|
! # include <stdlib.h>
|
|
|
|
! #else
|
|
|
|
! # include <malloc.h>
|
|
|
|
! #endif
|
|
|
|
#include "HTMLP.h"
|
1999-05-31 04:57:17 +00:00
|
|
|
|
1998-04-09 08:13:33 +00:00
|
|
|
/* Fix thanks to robm. */
|
1999-05-31 04:57:17 +00:00
|
|
|
! #if defined(__alpha) && !defined(__FreeBSD__)
|
|
|
|
#include <Xm/VaSimple.h>
|
|
|
|
#endif
|
|
|
|
|
1998-04-09 08:13:33 +00:00
|
|
|
***************
|
|
|
|
*** 1507,1510 ****
|
1999-05-31 04:57:17 +00:00
|
|
|
|
1998-04-09 08:13:33 +00:00
|
|
|
return( PS_string);
|
|
|
|
}
|
1999-05-31 04:57:17 +00:00
|
|
|
-
|
1998-04-09 08:13:33 +00:00
|
|
|
--- 1511,1513 ----
|