/****************************************************************
 *                                                              *
 *  LIBDIST V1.0						*
 *                                                              *
 *  ns-test.c -- test naming service                            *
 *                                                              *
 *  Last changed: 02.04.96                                      *
 *  Author: Frank Kargl (frank.kargl@informatik.uni-ulm.de)     *
 *                                                              *
 *  Restrictions: works only for Solaris 2.6 or above           *
 *                                                              *
 ****************************************************************/

#include "libdist.h"

int main() {

    fprintf(stderr,"Starting nameserver\n");

    if (dl_ns_start() == DL_ERROR) {
	fprintf(stderr,"ERROR\n");
    }

    while(1) {
	sleep(100);
    }

    return 0;
}
