diff options
Diffstat (limited to 'src/backend/port/hpux')
-rw-r--r-- | src/backend/port/hpux/Makefile | 34 | ||||
-rw-r--r-- | src/backend/port/hpux/port.c | 32 |
2 files changed, 0 insertions, 66 deletions
diff --git a/src/backend/port/hpux/Makefile b/src/backend/port/hpux/Makefile deleted file mode 100644 index 8bc1a1e3079..00000000000 --- a/src/backend/port/hpux/Makefile +++ /dev/null @@ -1,34 +0,0 @@ -#------------------------------------------------------------------------- -# -# Makefile-- -# Makefile for port/hpux -# -# IDENTIFICATION -# $Header: /cvsroot/pgsql/src/backend/port/hpux/Attic/Makefile,v 1.3 1997/12/20 00:25:34 scrappy Exp $ -# -#------------------------------------------------------------------------- - -SRCDIR = ../../.. -include ../../../Makefile.global - -INCLUDE_OPT = -I../.. - -CFLAGS+=$(INCLUDE_OPT) - -OBJS = port.o dynloader.o tas.o - -all: SUBSYS.o - -SUBSYS.o: $(OBJS) - $(LD) -r -o SUBSYS.o $(OBJS) - -depend dep: - $(CC) -MM $(INCLUDE_OPT) *.c >depend - -clean: - rm -f SUBSYS.o $(OBJS) - -ifeq (depend,$(wildcard depend)) -include depend -endif - 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. - */ -} |