From ad5a61715d2113a2b341b6e867e65588dd4faf68 Mon Sep 17 00:00:00 2001 From: dimitrov Date: Fri, 10 Mar 2006 15:56:05 +0000 Subject: [PATCH] Adding a stub for the graph library. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@1936 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- src/Makefile.am | 2 ++ src/xbt/graph.c | 1 + src/xbt/graph_private.h | 1 + 3 files changed, 4 insertions(+) create mode 100644 src/xbt/graph.c create mode 100644 src/xbt/graph_private.h diff --git a/src/Makefile.am b/src/Makefile.am index 479ea05ea8..694c96a191 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -20,6 +20,7 @@ EXTRA_DIST= \ xbt/dict_private.h \ xbt/heap_private.h \ xbt/fifo_private.h \ + xbt/graph_private.h \ xbt/context_private.h xbt/context_win32.h xbt/context_win32.c\ \ surf/maxmin_private.h \ @@ -112,6 +113,7 @@ COMMON_SRC=\ xbt/heap.c \ xbt/fifo.c \ xbt/swag.c \ + xbt/graph.c \ xbt/set.c \ xbt/module.c \ xbt/config.c \ diff --git a/src/xbt/graph.c b/src/xbt/graph.c new file mode 100644 index 0000000000..22a91260fc --- /dev/null +++ b/src/xbt/graph.c @@ -0,0 +1 @@ +#include "graph_private.h" diff --git a/src/xbt/graph_private.h b/src/xbt/graph_private.h new file mode 100644 index 0000000000..8b13789179 --- /dev/null +++ b/src/xbt/graph_private.h @@ -0,0 +1 @@ + -- 2.20.1