From e5d2abb56ca57a613e4ef9398a6499190b2265be Mon Sep 17 00:00:00 2001 From: hunt Date: Sat, 18 Jun 2005 07:24:42 +0000 Subject: 2005-06-18 Martin Hunt * counter.c: New file. Counter aggregations. * stat.c: New file. Stat aggregations. * stat.h: Header file for stats. * map-int.c: New file. Support for int64 values. * map-stat.c: New file. Support for stat values. * map-str.c: New file. Support for string values. * map-values.c: Now just includes the necessary map-*.c files. * stat-common.c: New file. Stats stuff common to Stats and maps containing stats. * Doxyfile: Bumped version to 0.6. * README: Renamed README.doc and reorganized. --- runtime/docs/examples/map.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runtime/docs/examples/map.c') diff --git a/runtime/docs/examples/map.c b/runtime/docs/examples/map.c index ca661d05..f5f6f19f 100644 --- a/runtime/docs/examples/map.c +++ b/runtime/docs/examples/map.c @@ -1,6 +1,6 @@ /* create a map with a max of 100 elements */ -MAP mymap = map_new(100, INT64); +MAP mymap = _stp_map_new(100, INT64); /* mymap[birth year] = 2000 */ map_key_str (mymap, "birth year"); -- cgit