diff options
author | Richard M. Stallman <rms@gnu.org> | 1995-05-04 16:15:43 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1995-05-04 16:15:43 +0000 |
commit | c7d713150e6ca8dfb13b5d007d955adcc77cc69c (patch) | |
tree | 9563a7bd2bc977ab9237e06e6dcdaa1100752527 /lwlib | |
parent | 2583d6d741589e8bb2a5935247a3b0aa76f3893d (diff) | |
download | emacs-c7d713150e6ca8dfb13b5d007d955adcc77cc69c.tar.gz |
[__osf__]: Include string.h and stdlib.h.
[__osf__] (xmalloc): Declared.
Diffstat (limited to 'lwlib')
-rw-r--r-- | lwlib/lwlib.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lwlib/lwlib.c b/lwlib/lwlib.c index e18f95b68c9..0df82d0207a 100644 --- a/lwlib/lwlib.c +++ b/lwlib/lwlib.c @@ -28,6 +28,12 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "lwlib-utils.h" #include <X11/StringDefs.h> +#ifdef __osf__ +#include <string.h> +#include <stdlib.h> +extern long *xmalloc(); +#endif + #if defined (USE_LUCID) #include "lwlib-Xlw.h" #endif |