diff options
Diffstat (limited to 'libguile/posix.c')
-rw-r--r-- | libguile/posix.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libguile/posix.c b/libguile/posix.c index 78fd295b5..ddbaeaacb 100644 --- a/libguile/posix.c +++ b/libguile/posix.c @@ -1869,6 +1869,11 @@ SCM_DEFINE (scm_getlogin, "getlogin", 0, 0, 0, #endif /* HAVE_GETLOGIN */ #if HAVE_CUSERID + +# if !HAVE_DECL_CUSERID +extern char *cuserid (char *); +# endif + SCM_DEFINE (scm_cuserid, "cuserid", 0, 0, 0, (void), "Return a string containing a user name associated with the\n" |