]> git.sur5r.net Git - openldap/blob - include/ac/crypt.h
Merge latest devel codes into releng 2 branch.
[openldap] / include / ac / crypt.h
1 /* Generic crypt.h */
2 /* $OpenLDAP$ */
3 /*
4  * Copyright 1998-2000 The OpenLDAP Foundation, Redwood City, California, USA
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms are permitted only
8  * as authorized by the OpenLDAP Public License.  A copy of this
9  * license is available at http://www.OpenLDAP.org/license.html or
10  * in file LICENSE in the top-level directory of the distribution.
11  */
12
13 #ifndef _AC_CRYPT_H
14 #define _AC_CRYPT_H
15
16 #include <ac/unistd.h>
17
18 /* crypt() may be defined in a separate include file */
19 #if HAVE_CRYPT_H
20 #       include <crypt.h>
21 #else
22         extern char *(crypt)();
23 #endif
24
25 #endif /* _AC_CRYPT_H */