Skip to content
Snippets Groups Projects
Commit 052acba2 authored by toy's avatar toy
Browse files

Add definitions for the passwd routines.

parent b2d9becd
No related branches found
No related tags found
No related merge requests found
/* Routines that must be linked into the core for lisp to work. */ /* Routines that must be linked into the core for lisp to work. */
/* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/undefineds.h,v 1.27 2002/10/27 23:01:10 toy Exp $ */ /* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/undefineds.h,v 1.28 2002/11/19 12:51:00 toy Exp $ */
/* Pick up all the syscalls. */ /* Pick up all the syscalls. */
F(accept) F(accept)
...@@ -259,3 +259,20 @@ F(cfgetospeed) ...@@ -259,3 +259,20 @@ F(cfgetospeed)
F(cfgetispeed) F(cfgetispeed)
F(cfsetispeed) F(cfsetispeed)
#endif #endif
#if defined(sparc)
F(getpwnam_r)
F(getpwuid_r)
F(getgrnam_r)
F(getgrgid_r)
#endif
#if defined(__NetBSD__)
F(getpwnam)
F(getpwuid)
F(getgrnam)
F(getgrgid)
#endif
F(setpwent)
F(getpwent)
F(endpwent)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment