(mod-fix x) → *
Function: mod-fix
(defun mod-fix (x) (declare (xargs :guard (mod-p x))) (let ((__function__ 'mod-fix)) (declare (ignorable __function__)) (mbe :logic (if (mod-p x) x 'nil) :exec x)))