summaryrefslogtreecommitdiff
path: root/lib/defines.h
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2001-05-03 09:44:17 +0000
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2001-05-03 09:44:17 +0000
commit936728c607c1ad0c2b13f733417264104a98bdd5 (patch)
tree09126d19f9d225b45659f34ad02d1f2400c7e09c /lib/defines.h
parentc8af7ee9674d5c8f91c63bab4653f7d8de3727f6 (diff)
downloadgnutls-936728c607c1ad0c2b13f733417264104a98bdd5.tar.gz
Changes in random number handling. Added bcrypt (for use with SRP).
Added test program crypt for creating bcrypt passwd files.
Diffstat (limited to 'lib/defines.h')
-rw-r--r--lib/defines.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/defines.h b/lib/defines.h
index 61644626b7..9b08abf1c8 100644
--- a/lib/defines.h
+++ b/lib/defines.h
@@ -18,6 +18,9 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
+#ifndef DEFINES_H
+# define DEFINES_H
+
#include <config.h>
#ifdef STDC_HEADERS
@@ -42,6 +45,10 @@
# include <sys/types.h>
#endif
+#ifdef USE_GCRYPT
+# include <gcrypt.h>
+#endif
+
#ifdef HAVE_SYS_STAT_H
# include <sys/stat.h>
#endif
@@ -99,3 +106,5 @@
# error "Neither memmove nor bcopy exists on your system."
# endif
#endif
+
+#endif /* defines_h */