1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-09 22:41:56 +03:00

HPUX 10 patches from Vladimir Turin

This commit is contained in:
Bruce Momjian
1997-07-27 18:52:43 +00:00
parent 3ac9d2fff3
commit d5e21e0924
4 changed files with 30 additions and 12 deletions

View File

@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: port-protos.h,v 1.1.1.1 1996/07/09 06:21:43 scrappy Exp $
* $Id: port-protos.h,v 1.2 1997/07/27 18:51:57 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@ -28,7 +28,7 @@ extern int init_address_fixup(void);
extern double rint(double x);
extern double cbrt(double x);
extern long random(void);
extern void srandom(int seed);
extern void srandom(unsigned seed);
extern int getrusage(int who, struct rusage *ru);
#endif /* PORT_PROTOS_H */

View File

@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/port/hpux/Attic/port.c,v 1.1.1.1 1996/07/09 06:21:43 scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/port/hpux/Attic/port.c,v 1.2 1997/07/27 18:52:05 momjian Exp $
*
* NOTES
* For the most part, this file gets around some non-POSIX calls
@ -36,7 +36,7 @@ random()
return(lrand48());
}
void srandom(int seed)
void srandom(unsigned seed)
{
srand48((long int) seed);
}