Move over the BSDi port files

This commit is contained in:
Marc G. Fournier 1997-12-20 03:13:59 +00:00
parent a0bc7aa74c
commit b5466f8669
3 changed files with 0 additions and 42 deletions

View File

@ -1,34 +0,0 @@
#-------------------------------------------------------------------------
#
# Makefile--
# Makefile for port/bsdi
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/port/bsdi/Attic/Makefile,v 1.6 1997/12/20 00:25:19 scrappy Exp $
#
#-------------------------------------------------------------------------
SRCDIR = ../../..
include ../../../Makefile.global
INCLUDE_OPT = -I../..
CFLAGS+=$(INCLUDE_OPT)
OBJS = dynloader.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

View File

@ -13,14 +13,6 @@
#ifndef PORT_PROTOS_H
#define PORT_PROTOS_H
/*
* Externals in libc that need prototypes (or at least declarations)
*/
extern char *ecvt(double, int, int *, int *);
extern char *fcvt(double, int, int *, int *);
#include "fmgr.h" /* for func_ptr */
#include "utils/dynamic_loader.h"