summaryrefslogtreecommitdiffstats
path: root/config.tests/unix/nis/nis.cpp
blob: 65561f13c60c35a92936e43621a767906b17acd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <sys/types.h>
#include <rpc/rpc.h>
#include <rpcsvc/ypclnt.h>
#include <rpcsvc/yp_prot.h>

int main(int, char **)
{
    char *d;
    yp_get_default_domain(&d);
    return 0;
}