mirror of
https://github.com/open-goal/jak-project
synced 2026-06-16 06:46:07 -04:00
7 lines
190 B
Common Lisp
7 lines
190 B
Common Lisp
(defun inline-test-function-2 ((x integer))
|
|
;; inline this function by default.
|
|
(declare (allow-inline))
|
|
(* 4 x)
|
|
)
|
|
|
|
(+ (inline-test-function-2 8) ((inline inline-test-function-2) 3)) |