From: mquinson Date: Thu, 9 Dec 2004 14:53:53 +0000 (+0000) Subject: fix (C) dates; proper xbt_log function X-Git-Tag: v3.3~4776 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/6882f6dbdfb8ba6d6b2aad182ad005d7d98c8e53?ds=sidebyside fix (C) dates; proper xbt_log function git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@574 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/examples/bandwidth/bandwidth.c b/examples/bandwidth/bandwidth.c index 508c0a1874..9069985d44 100644 --- a/examples/bandwidth/bandwidth.c +++ b/examples/bandwidth/bandwidth.c @@ -2,7 +2,7 @@ /* bandwidth - bandwidth test demo of GRAS features */ -/* Copyright (c) 2004 Martin Quinson. All rights reserved. */ +/* Copyright (c) 2003, 2004 Martin Quinson. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ diff --git a/src/gras_modinter.h b/src/gras_modinter.h index ccf52cd784..aa37c8d7fd 100644 --- a/src/gras_modinter.h +++ b/src/gras_modinter.h @@ -1,8 +1,8 @@ /* $Id$ */ -/* gras_modinter.h - Interface to GRAS modules */ +/* gras_modinter.h - How to init/exit the GRAS modules */ -/* Copyright (c) 2004 Martin Quinson. All rights reserved. */ +/* Copyright (c) 2003, 2004 Martin Quinson. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ diff --git a/src/xbt_modinter.h b/src/xbt_modinter.h index 1b32e6ffc5..d6787730f1 100644 --- a/src/xbt_modinter.h +++ b/src/xbt_modinter.h @@ -1,8 +1,8 @@ /* $Id$ */ -/* xbt_modinter - Interface to XBT modules */ +/* xbt_modinter - How to init/exit the XBT modules */ -/* Copyright (c) 2004 Martin Quinson. All rights reserved. */ +/* Copyright (c) 2003, 2004 Martin Quinson. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -11,7 +11,7 @@ #define XBT_MODINTER_H /* Modules definitions */ -void gras_log_init(void); +void xbt_log_init(int *argc,char **argv, const char *defaultlog); void xbt_log_exit(void); #endif /* XBT_MODINTER_H */