|
|
@ -6,7 +6,7 @@ |
|
|
|
* |
|
|
|
* |
|
|
|
* Copyright (c) 1994, Regents of the University of California |
|
|
|
* Copyright (c) 1994, Regents of the University of California |
|
|
|
* |
|
|
|
* |
|
|
|
* $Id: port-protos.h,v 1.6 1997/09/08 02:27:06 momjian Exp $ |
|
|
|
* $Id: port-protos.h,v 1.7 1997/09/18 16:09:14 scrappy Exp $ |
|
|
|
* |
|
|
|
* |
|
|
|
*------------------------------------------------------------------------- |
|
|
|
*------------------------------------------------------------------------- |
|
|
|
*/ |
|
|
|
*/ |
|
|
@ -36,8 +36,12 @@ |
|
|
|
#define pg_dlerror dlerror |
|
|
|
#define pg_dlerror dlerror |
|
|
|
|
|
|
|
|
|
|
|
/* port.c */ |
|
|
|
/* port.c */ |
|
|
|
|
|
|
|
#ifndef HAVE_RANDOM |
|
|
|
extern long random(void); |
|
|
|
extern long random(void); |
|
|
|
|
|
|
|
#endif |
|
|
|
|
|
|
|
#ifndef HAVE_SRANDOM |
|
|
|
extern void srandom(int seed); |
|
|
|
extern void srandom(int seed); |
|
|
|
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
|
|
/* inet_aton.c in backend/port directory */ |
|
|
|
/* inet_aton.c in backend/port directory */ |
|
|
|
extern int inet_aton(const char *cp, struct in_addr * addr); |
|
|
|
extern int inet_aton(const char *cp, struct in_addr * addr); |
|
|
|