mirror of
https://github.com/open-goal/jak-project
synced 2026-06-09 04:40:19 -04:00
7 lines
140 B
Common Lisp
7 lines
140 B
Common Lisp
(defun inline-test-function-1 ((x int))
|
|
;; inline this function by default.
|
|
(declare (inline))
|
|
(* 4 x)
|
|
)
|
|
|
|
(inline-test-function-1 8) |