Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
|
|
@ -0,0 +1,6 @@
|
|||
#lang racket
|
||||
(require ffi/unsafe)
|
||||
(define libm (ffi-lib "libm")) ; get a handle for the C math library
|
||||
; look up sqrt in the math library. if we can't find it, return the builtin sqrt
|
||||
(define extern-sqrt (get-ffi-obj 'sqrt libm (_fun _double -> _double)
|
||||
(lambda () sqrt)))
|
||||
Loading…
Add table
Add a link
Reference in a new issue