mirror of
https://github.com/postgres/postgres.git
synced 2025-11-10 17:42:29 +03:00
Improvements to the ultrix port, in particular a bunch of compiler
quieting prototyping in port/ultrix4.h Submitted by: Erik Bertelsen <erik@sockdev.uni-c.dk>
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
*
|
||||
* Copyright (c) 1994, Regents of the University of California
|
||||
*
|
||||
* $Id: port-protos.h,v 1.4 1997/01/16 06:32:17 bryanh Exp $
|
||||
* $Id: port-protos.h,v 1.5 1997/02/13 09:53:57 scrappy Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@@ -32,9 +32,12 @@ extern char *fcvt(double, int, int*, int*);
|
||||
#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);
|
||||
|
||||
/* strdup.c: strdup() is not part of libc on Ultrix */
|
||||
@@ -44,6 +47,7 @@ extern char* strdup(char const*);
|
||||
backend/port/inet_aton.h
|
||||
*/
|
||||
|
||||
struct in_addr;
|
||||
int
|
||||
inet_aton(const char *cp, struct in_addr *addr);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user