#include "config.h"
#include <stdio.h>
#include <string.h>

/**
 * dgraph - simple directed graph module
 *
 * This code implements a simple directed graph, with nodes and edges.
 *
 * License: LGPL (v2.1 or any later version)
 */
int main(int argc, char *argv[])
{
	/* Expect exactly one argument */
	if (argc != 2)
		return 1;

	if (strcmp(argv[1], "depends") == 0) {
		printf("ccan/tlist\n");
		printf("ccan/typesafe_cb\n");
		printf("ccan/agar\n");
		return 0;
	}

	return 1;
}
