mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 21:45:37 +00:00
ICU-790 limits.h addition changes for HP11
X-SVN-Rev: 3370
This commit is contained in:
parent
937fa66aa6
commit
1371a43d35
2 changed files with 4 additions and 2 deletions
|
@ -21,6 +21,7 @@
|
|||
#include "unicode/unistr.h"
|
||||
#include "unicode/resbund.h"
|
||||
#include "restest.h"
|
||||
#include <limits.h>
|
||||
|
||||
//***************************************************************************************
|
||||
|
||||
|
@ -144,7 +145,7 @@ randul()
|
|||
double
|
||||
randd()
|
||||
{
|
||||
return (double)(randul() / UINT32_MAX);
|
||||
return (double)(randul() / ULONG_MAX);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
#include "unicode/unistr.h"
|
||||
#include "unicode/resbund.h"
|
||||
#include "restsnew.h"
|
||||
#include <limits.h>
|
||||
|
||||
//***************************************************************************************
|
||||
|
||||
|
@ -144,7 +145,7 @@ randul()
|
|||
static double
|
||||
randd()
|
||||
{
|
||||
return ((double)randul()) / UINT32_MAX;
|
||||
return (double)(randul() / ULONG_MAX);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Reference in a new issue