head	1.1;
access;
symbols
	release_4_2:1.1;
locks; strict;
comment	@ * @;


1.1
date	94.06.09.03.22.28;	author aoki;	state Exp;
branches;
next	;


desc
@@


1.1
log
@Initial revision
@
text
@/*
 *   FILE
 *	port-protos.h
 *
 *   DESCRIPTION
 *	port-specific prototypes for SunOS 4
 *
 *   NOTES
 *
 *   IDENTIFICATION
 *	$Header: /home2/aoki/postgres/src/backend/port/sparc/RCS/port-protos.h,v 1.5 1993/08/04 11:02:54 aoki Exp $
 */

#ifndef PortProtos_H			/* include this file only once */
#define PortProtos_H 1

#include <dlfcn.h>
#include "fmgr.h"			/* for func_ptr */
#include "utils/dynamic_loader.h"

/* dynloader.c */

#define	pg_dlsym	dlsym
#define	pg_dlclose	dlclose

/* port.c */

void sparc_bug_set_outerjoincost ARGS((char *p, long val));
extern long random ARGS((void));
extern void srandom ARGS((int seed));

#endif /* PortProtos_H */
@
