mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
Add _SEQUENT_ to lrand48 conditional.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@465 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
84b6310d6b
commit
8b356836c7
3 changed files with 3 additions and 3 deletions
|
@ -2,7 +2,7 @@
|
|||
#include <objc/Object.h>
|
||||
#include <objects/objects.h>
|
||||
|
||||
#if (__svr4__) || defined(__hpux)
|
||||
#if (__svr4__) || defined(__hpux) || defined(_SEQUENT_)
|
||||
long lrand48();
|
||||
#define random lrand48
|
||||
#else
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
#define N 20
|
||||
|
||||
#if (sun && __svr4__) || defined(__hpux)
|
||||
#if (sun && __svr4__) || defined(__hpux) || defined(_SEQUENT_)
|
||||
long lrand48();
|
||||
#define random lrand48
|
||||
#else
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#include <objects/objects.h>
|
||||
|
||||
#if (sun && __svr4__) || defined(__hpux)
|
||||
#if (sun && __svr4__) || defined(__hpux) || defined(_SEQUENT_)
|
||||
long lrand48();
|
||||
#define random lrand48
|
||||
#else
|
||||
|
|
Loading…
Reference in a new issue