diff options
author | Marc G. Fournier <scrappy@hub.org> | 1998-02-03 01:25:47 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1998-02-03 01:25:47 +0000 |
commit | eb348bf41cb231d1f808a91f3367bfbb96af27d5 (patch) | |
tree | dbfebed4867d8999c1736b64094509e750d08839 /src/backend/port/hpux/port.c | |
parent | fe3737f6f9c9380a84d6b3c98de0f208f1a82c36 (diff) | |
download | postgresql-eb348bf41cb231d1f808a91f3367bfbb96af27d5.tar.gz postgresql-eb348bf41cb231d1f808a91f3367bfbb96af27d5.zip |
Clean up the alpha port, remove the backend/port/alpha subdirectory
structure, and move the init_address_fixup() code directly into
backend/main/main.c with appropriate #ifdefs around it...
Diffstat (limited to 'src/backend/port/hpux/port.c')
-rw-r--r-- | src/backend/port/hpux/port.c | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/src/backend/port/hpux/port.c b/src/backend/port/hpux/port.c deleted file mode 100644 index 1c82a099995..00000000000 --- a/src/backend/port/hpux/port.c +++ /dev/null @@ -1,32 +0,0 @@ -/*------------------------------------------------------------------------- - * - * port.c-- - * port-specific routines for HP-UX - * - * Copyright (c) 1994, Regents of the University of California - * - * - * IDENTIFICATION - * $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 - * in POSTGRES. - * - *------------------------------------------------------------------------- - */ -#include <unistd.h> /* for rand()/srand() prototypes */ -#include <math.h> /* for pow() prototype */ -#include <sys/syscall.h> /* for syscall #defines */ - -#include "c.h" - -void -init_address_fixup() -{ - - /* - * On PA-RISC, unaligned access fixup is handled by the compiler, not - * by the kernel. - */ -} |