Commit 0ce5bbfd 0ce5bbfd47277df5bea04f328ef8bb5a2694a8a2 by Sergey Poznyakoff

Include <crypt.h> when available

1 parent a437ac39
......@@ -33,6 +33,9 @@
#ifdef HAVE_STRINGS_H
# include <strings.h>
#endif
#ifdef HAVE_CRYPT_H
# include <crypt.h>
#endif
#include <mailutils/list.h>
#include <mailutils/iterator.h>
......
......@@ -33,6 +33,9 @@
#ifdef HAVE_STRINGS_H
# include <strings.h>
#endif
#ifdef HAVE_CRYPT_H
# include <crypt.h>
#endif
#include <mailutils/list.h>
#include <mailutils/iterator.h>
......