summaryrefslogtreecommitdiff
path: root/rc4.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>1999-10-28 14:12:54 +1000
committerDamien Miller <djm@mindrot.org>1999-10-28 14:12:54 +1000
commite413cba972feb60d3d4d104c0c93320435610d1b (patch)
treed712398819471c56f89ea3fc7a4fa5fb8db38690 /rc4.c
parent062307657e30c9b970514eb53b4b743f9d571231 (diff)
Disabled code based on autoconf tests
Diffstat (limited to 'rc4.c')
-rw-r--r--rc4.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/rc4.c b/rc4.c
index a426188aa..998a10774 100644
--- a/rc4.c
+++ b/rc4.c
@@ -41,6 +41,9 @@
41 41
42/* $Id: rc4.c,v 1.1.1.1 1999/10/26 05:48:13 damien Exp $ */ 42/* $Id: rc4.c,v 1.1.1.1 1999/10/26 05:48:13 damien Exp $ */
43 43
44#include "config.h"
45
46#ifndef HAVE_ARC4RANDOM
44#include "rc4.h" 47#include "rc4.h"
45 48
46 49
@@ -103,3 +106,4 @@ void rc4_getbytes(rc4_t *r, unsigned char *buffer, int len)
103 c++; 106 c++;
104 } 107 }
105} 108}
109#endif /* !HAVE_ARC4RANDOM */