summaryrefslogtreecommitdiffstats
path: root/crypto/rand/rand.h
diff options
context:
space:
mode:
authorBen Laurie <ben@openssl.org>1999-01-24 17:54:23 +0000
committerBen Laurie <ben@openssl.org>1999-01-24 17:54:23 +0000
commit41c62a8e568bf1023a01ea123463c71caca668dc (patch)
tree37fdbe8225ed980a92697e3c25f6fd71b498c96a /crypto/rand/rand.h
parent834eeef995bb3783550d11186f9d649aaacd43ac (diff)
Minor constification.
Diffstat (limited to 'crypto/rand/rand.h')
-rw-r--r--crypto/rand/rand.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/rand/rand.h b/crypto/rand/rand.h
index f5edcb9a54..34ef90373e 100644
--- a/crypto/rand/rand.h
+++ b/crypto/rand/rand.h
@@ -83,8 +83,8 @@ RAND_METHOD *RAND_SSLeay(void);
void RAND_cleanup(void );
void RAND_bytes( unsigned char *buf,int num);
void RAND_seed( unsigned char *buf,int num);
-int RAND_load_file(char *file,long max_bytes);
-int RAND_write_file(char *file);
+int RAND_load_file(const char *file,long max_bytes);
+int RAND_write_file(const char *file);
char *RAND_file_name(char *file,int num);
#ifdef WINDOWS
void RAND_screen(void);