diff options
author | Jon Parise <jon@php.net> | 2001-02-22 03:37:32 +0000 |
---|---|---|
committer | Jon Parise <jon@php.net> | 2001-02-22 03:37:32 +0000 |
commit | b0af96a9fe961dfa5a92607dbc317b50a88c00f1 (patch) | |
tree | d943839ff11fef8e6b0033193c186721db7c412b /ext/standard/crypt.c | |
parent | bd98f3d12470695dec45a96718b19f01df4213a2 (diff) | |
download | php-git-b0af96a9fe961dfa5a92607dbc317b50a88c00f1.tar.gz |
The php_rand() and php_srand() functions added in the previous commit
require the inclusion of php_rand.h.
Diffstat (limited to 'ext/standard/crypt.c')
-rw-r--r-- | ext/standard/crypt.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/standard/crypt.c b/ext/standard/crypt.c index 269d06ad2a..95128bea72 100644 --- a/ext/standard/crypt.c +++ b/ext/standard/crypt.c @@ -48,6 +48,7 @@ extern char *crypt(char *__key,char *__salt); #include "php_lcg.h" #include "php_crypt.h" +#include "php_rand.h" /* The capabilities of the crypt() function is determined by the test programs |