home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ldapsdk.zip / include / ac / crypt.h < prev    next >
C/C++ Source or Header  |  2001-05-30  |  748b  |  27 lines

  1. /* Generic crypt.h */
  2. /* $OpenLDAP: pkg/ldap/include/ac/crypt.h,v 1.2.2.2 2001/05/30 05:10:45 kurt Exp $ */
  3. /*
  4.  * Copyright 1998-2001 The OpenLDAP Foundation, Redwood City, California, USA
  5.  * All rights reserved.
  6.  *
  7.  * Redistribution and use in source and binary forms, with or without
  8.  * modification, are permitted only as authorized by the OpenLDAP
  9.  * Public License.  A copy of this license is available at
  10.  * http://www.OpenLDAP.org/license.html or in file LICENSE in the
  11.  * top-level directory of the distribution.
  12.  */
  13.  
  14. #ifndef _AC_CRYPT_H
  15. #define _AC_CRYPT_H
  16.  
  17. #include <ac/unistd.h>
  18.  
  19. /* crypt() may be defined in a separate include file */
  20. #if HAVE_CRYPT_H
  21. #    include <crypt.h>
  22. #else
  23.     extern char *(crypt)();
  24. #endif
  25.  
  26. #endif /* _AC_CRYPT_H */
  27.