RosettaCodeData/Task/Random-number-generator-device-/Common-Lisp/random-number-generator-device-.lisp
2023-07-01 13:44:08 -04:00

3 lines
113 B
Common Lisp

(defun random-int32 ()
(with-open-file (s "/dev/random" :element-type '(unsigned-byte 32))
(read-byte s)))