Skip to content
Snippets Groups Projects
Commit 50fb9e23 authored by toy's avatar toy
Browse files

Need string.h for sparc to remove some compile-time warnings about strdup.

parent 284fd069
No related branches found
No related tags found
No related merge requests found
/* /*
* main() entry point for a stand alone lisp image. * main() entry point for a stand alone lisp image.
* *
* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/lisp.c,v 1.31 2003/04/28 23:07:38 cracauer Exp $ * $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/lisp.c,v 1.32 2003/07/28 18:52:15 toy Exp $
* *
*/ */
...@@ -39,6 +39,10 @@ ...@@ -39,6 +39,10 @@
#include "interr.h" #include "interr.h"
#endif #endif
#ifdef sparc
#include <string.h>
#endif
/* SIGINT handler that invokes the monitor. */ /* SIGINT handler that invokes the monitor. */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment