xref: /netbsd-src/external/bsd/openldap/dist/include/ac/crypt.h (revision bdc22b2e01993381dcefeff2bc9b56ca75a4235c)
1 /*	$NetBSD: crypt.h,v 1.1.1.6 2018/02/06 01:53:05 christos Exp $	*/
2 
3 /* Generic crypt.h */
4 /* $OpenLDAP$ */
5 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
6  *
7  * Copyright 1998-2017 The OpenLDAP Foundation.
8  * All rights reserved.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted only as authorized by the OpenLDAP
12  * Public License.
13  *
14  * A copy of this license is available in file LICENSE in the
15  * top-level directory of the distribution or, alternatively, at
16  * <http://www.OpenLDAP.org/license.html>.
17  */
18 
19 #ifndef _AC_CRYPT_H
20 #define _AC_CRYPT_H
21 
22 #include <ac/unistd.h>
23 
24 /* crypt() may be defined in a separate include file */
25 #ifdef HAVE_CRYPT_H
26 #	include <crypt.h>
27 #else
28 	extern char *(crypt)();
29 #endif
30 
31 #endif /* _AC_CRYPT_H */
32