diff options
author | Marc G. Fournier <scrappy@hub.org> | 1998-01-15 20:54:52 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1998-01-15 20:54:52 +0000 |
commit | d876c2580352fad94a22e57792a12da9ec9b85dd (patch) | |
tree | f07e5373ad850c309f159186afd29744e67debbe /src/backend/port/gethostname.c | |
parent | baef78d96b799b6264a54f8cfce4fda2b2da9701 (diff) |
Fix:
nodeAgg.c: WARN -> NOTICE for elog
parse_oper.c: was created after patch for fmgr_info, so function call wrong
scan.c: regenerated for i386_solaris using flex 2.5.4
gethostname.c: required prototype for gethostname() function
config.h.in: create prototype for isinfo() function
isinf.c: "fake" isinf() under i386_solaris using fpclass() call...
Diffstat (limited to 'src/backend/port/gethostname.c')
-rw-r--r-- | src/backend/port/gethostname.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/backend/port/gethostname.c b/src/backend/port/gethostname.c index 780e1c6a6f5..66449d8524b 100644 --- a/src/backend/port/gethostname.c +++ b/src/backend/port/gethostname.c @@ -1,10 +1,12 @@ -/* $Id: gethostname.c,v 1.2 1997/12/19 13:34:26 scrappy Exp $ */ +/* $Id: gethostname.c,v 1.3 1998/01/15 20:54:34 scrappy Exp $ */ #include <sys/types.h> #include <string.h> #include <sys/utsname.h> +#include "config.h" + int gethostname(char *name, int namelen) { |