Skip to content
Snippets Groups Projects
Commit ffd50090 authored by dtc's avatar dtc
Browse files

Don't want the trailing semi-colon on the setfpucw macro.

parent 15fd349b
No related branches found
No related tags found
No related merge requests found
/* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/Linux-os.h,v 1.12 2000/04/12 17:31:19 pw Exp $
/* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/Linux-os.h,v 1.13 2000/10/21 12:40:56 dtc Exp $
This code was written as part of the CMU Common Lisp project at
Carnegie Mellon University, and has been placed in the public domain.
......@@ -77,7 +77,7 @@ typedef struct sigcontext_struct sigcontext;
#define GET_CONTEXT int code=0; struct sigcontext_struct *context=&contextstruct;
#endif
#define setfpucw(cw) asm("fldcw %0" : : "m" (cw));
#define setfpucw(cw) asm("fldcw %0" : : "m" (cw))
#define sigvec sigaction
#define sv_mask sa_mask
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment