xrootd
XrdSecpwdPlatform.hh
Go to the documentation of this file.
1 // $Id$
2 #ifndef __SECPWD_PLATFORM_
3 #define __SECPWD_PLATFORM_
4 /******************************************************************************/
5 /* */
6 /* X r d S e c p w d P l a t f o r m. h h */
7 /* */
8 /* (c) 2005 by the Board of Trustees of the Leland Stanford, Jr., University */
9 /* All Rights Reserved */
10 /* Produced by Andrew Hanushevsky for Stanford University under contract */
11 /* DE-AC03-76-SFO0515 with the Department of Energy */
12 /******************************************************************************/
13 
14 //
15 // crypt
16 //
17 #if defined(__solaris__)
18 #include <crypt.h>
19 #endif
20 #if defined(__osf__) || defined(__sgi) || defined(__macos__)
21 extern "C" char *crypt(const char *, const char *);
22 #endif
23 
24 //
25 // shadow passwords
26 //
27 #include <grp.h>
28 
29 #ifdef HAVE_SHADOWPW
30 #include <shadow.h>
31 #endif
32 
33 #endif