diff --git a/lib/chibi/system.module b/lib/chibi/system.module index 8b9f94eb..dee60b47 100644 --- a/lib/chibi/system.module +++ b/lib/chibi/system.module @@ -10,4 +10,6 @@ set-root-directory!) (import-immutable (scheme)) (include-shared "system") - (include "system.scm")) + (body + (define (user-information user) + (car (if (string? user) (getpwnam_r user) (getpwuid_r user))))))