RosettaCodeData/Task/Random-number-generator--device-/Common-Lisp/random-number-generator--device-.lisp
2017-09-25 22:28:19 +02:00

3 lines
113 B
Common Lisp

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