Fix [ #407067 ] Compile error on AIX 4.3.
This commit is contained in:
parent
24182ecc89
commit
cb6fb0d3cd
|
@ -22,7 +22,7 @@
|
||||||
/* Make sure our exports match up w/the implementation: */
|
/* Make sure our exports match up w/the implementation: */
|
||||||
#include "network1.h"
|
#include "network1.h"
|
||||||
|
|
||||||
#ifndef __CYGWIN__
|
#if !defined(__CYGWIN__) && !defined(_AIX)
|
||||||
extern int h_errno;
|
extern int h_errno;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
2
unix.c
2
unix.c
|
@ -523,7 +523,7 @@ fill_the_table(void)
|
||||||
entry.n_scnum != N_UNDEF &&
|
entry.n_scnum != N_UNDEF &&
|
||||||
entry.n_scnum != N_DEBUG)
|
entry.n_scnum != N_DEBUG)
|
||||||
{
|
{
|
||||||
extern char *ldgetname(LDFILE *, SYMENT *);
|
extern char *ldgetname(LDFILE *, void *);
|
||||||
char *p = ldgetname(f, &entry);
|
char *p = ldgetname(f, &entry);
|
||||||
|
|
||||||
if (p != NULL && p[0] == '.') {
|
if (p != NULL && p[0] == '.') {
|
||||||
|
|
Loading…
Reference in New Issue