mirror of
https://github.com/postgres/postgres.git
synced 2025-11-12 05:01:15 +03:00
Postgres95 1.01 Distribution - Virgin Sources
This commit is contained in:
36
src/backend/port/ultrix4/port-protos.h
Normal file
36
src/backend/port/ultrix4/port-protos.h
Normal file
@@ -0,0 +1,36 @@
|
||||
/*-------------------------------------------------------------------------
|
||||
*
|
||||
* port-protos.h--
|
||||
* prototypes for Ultrix-specific routines
|
||||
*
|
||||
*
|
||||
* Copyright (c) 1994, Regents of the University of California
|
||||
*
|
||||
* $Id: port-protos.h,v 1.1.1.1 1996/07/09 06:21:45 scrappy Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
#ifndef PORT_PORTOS_H
|
||||
#define PORT_PORTOS_H
|
||||
|
||||
#include "utils/dynamic_loader.h"
|
||||
#include "dl.h"
|
||||
|
||||
/* dynloader.c */
|
||||
/*
|
||||
* New dynamic loader.
|
||||
*
|
||||
* This dynamic loader uses Andrew Yu's libdl-1.0 package for Ultrix 4.x.
|
||||
* (Note that pg_dlsym and pg_dlclose are actually macros defined in
|
||||
* "port-protos.h".)
|
||||
*/
|
||||
|
||||
#define pg_dlsym(h, f) ((func_ptr)dl_sym(h, f))
|
||||
#define pg_dlclose(h) dl_close(h)
|
||||
#define pg_dlerror() dl_error()
|
||||
|
||||
/* port.c */
|
||||
|
||||
extern void init_address_fixup(void);
|
||||
|
||||
#endif /* PORT_PORTOS_H */
|
||||
Reference in New Issue
Block a user