diff options
Diffstat (limited to 'src/backend/port/ultrix4/port-protos.h')
-rw-r--r-- | src/backend/port/ultrix4/port-protos.h | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/src/backend/port/ultrix4/port-protos.h b/src/backend/port/ultrix4/port-protos.h deleted file mode 100644 index fc3b40c7629..00000000000 --- a/src/backend/port/ultrix4/port-protos.h +++ /dev/null @@ -1,43 +0,0 @@ -/*------------------------------------------------------------------------- - * - * port-protos.h-- - * prototypes for Ultrix-specific routines - * - * - * Copyright (c) 1994, Regents of the University of California - * - * $Id: port-protos.h,v 1.8 1997/12/19 22:46:47 scrappy Exp $ - * - *------------------------------------------------------------------------- - */ -#ifndef PORT_PORTOS_H -#define PORT_PORTOS_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 *); - -/* 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() -extern int dl_init(char *); - -/* port.c */ - -extern int syscall(); - -extern void init_address_fixup(void); - -#endif /* PORT_PORTOS_H */ |