diff options
Diffstat (limited to 'config.tests/unix/nis/nis.cpp')
-rw-r--r-- | config.tests/unix/nis/nis.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/config.tests/unix/nis/nis.cpp b/config.tests/unix/nis/nis.cpp new file mode 100644 index 0000000..65561f1 --- /dev/null +++ b/config.tests/unix/nis/nis.cpp @@ -0,0 +1,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; +} |