00001
00002 #ifndef __SECPWD_PLATFORM_
00003 #define __SECPWD_PLATFORM_
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #if defined(__solaris__)
00018 #include <crypt.h>
00019 #endif
00020 #if defined(__osf__) || defined(__sgi) || defined(__macos__)
00021 extern "C" char *crypt(const char *, const char *);
00022 #endif
00023
00024
00025
00026
00027 #include <grp.h>
00028
00029 #if defined(__solaris__)
00030 #ifndef R__SHADOWPW
00031 #define R__SHADOWPW
00032 #endif
00033 #endif
00034 #ifdef R__SHADOWPW
00035 #include <shadow.h>
00036 #endif
00037
00038 #endif