X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=examples%2Fnfsclient-listservers.c;h=a67e74f9de3c6caf9519470ea3f99ce764abce4f;hb=e78e413d8e9db60869f3a91903f3552a7b281fcc;hp=c4fc41e76c9ae52c1269f53afe53604aa17cddb3;hpb=763cd6e3e2bbb6906186e7ed6a86660276b596b7;p=deb_libnfs.git diff --git a/examples/nfsclient-listservers.c b/examples/nfsclient-listservers.c index c4fc41e..a67e74f 100644 --- a/examples/nfsclient-listservers.c +++ b/examples/nfsclient-listservers.c @@ -17,18 +17,27 @@ /* Example program showing sync interface to probe for all local servers */ +#ifdef AROS +#include "aros_compat.h" +#endif + +#ifdef WIN32 +#include "win32_compat.h" +#endif #include #include -#include "libnfs-zdr.h" #include "libnfs.h" - int main(int argc _U_, char *argv[] _U_) { struct nfs_server_list *srvrs; struct nfs_server_list *srv; +#ifdef AROS + aros_init_socket(); +#endif + srvrs = nfs_find_local_servers(); for (srv=srvrs; srv; srv = srv->next) { printf("NFS SERVER @ %s\n", srv->addr);