getumask.lisp 152 B

12345678910
  1. (in-package :hurd)
  2. (defcfun ("getumask" %getumask) mode-t)
  3. (defun getumask ()
  4. "Get the current `umask' value without changing it."
  5. (%getumask))