1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

More cleanups...several ports are major redundancies of other ports

This commit is contained in:
Marc G. Fournier
1997-12-19 02:46:25 +00:00
parent 3ad815fc2a
commit 3aae0f5300
12 changed files with 19 additions and 377 deletions

View File

@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/port/hpux/Attic/port.c,v 1.3 1997/09/07 04:45:52 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/port/hpux/Attic/port.c,v 1.4 1997/12/19 02:45:44 scrappy Exp $
*
* NOTES
* For the most part, this file gets around some non-POSIX calls
@ -30,20 +30,3 @@ init_address_fixup()
* by the kernel.
*/
}
long
random()
{
return (lrand48());
}
void
srandom(unsigned seed)
{
srand48((long int) seed);
}
getrusage(int who, struct rusage * ru)
{
return (syscall(SYS_GETRUSAGE, who, ru));
}