]> git.sur5r.net Git - openldap/blob - include/ac/crypt.h
Fix ITS#1983, handle writing of large requests. Only one pending request is
[openldap] / include / ac / crypt.h
1 /* Generic crypt.h */
2 /* $OpenLDAP$ */
3 /*
4  * Copyright 1998-2002 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 */