factor/basis/alien/complex/complex.factor

16 lines
499 B
Factor
Raw Normal View History

! Copyright (C) 2009 Slava Pestov.
! See http://factorcode.org/license.txt for BSD license.
2017-12-26 15:04:00 -05:00
USING: accessors alien alien.c-types alien.complex.functor
classes.struct kernel math quotations ;
FROM: alien.c-types => float double ;
IN: alien.complex
2017-12-26 15:04:00 -05:00
COMPLEX-TYPE: float complex-float
COMPLEX-TYPE: double complex-double
2009-02-12 09:10:21 -05:00
2010-02-21 13:28:42 -05:00
<<
2009-02-12 09:10:21 -05:00
! This overrides the fact that small structures are never returned
! in registers on Linux running on 32-bit x86.
\ complex-float lookup-c-type t >>return-in-registers? drop
>>