From: mquinson Date: Wed, 15 Dec 2010 08:54:37 +0000 (+0000) Subject: protect this file against multiple inclusions to fix supernovae (oops) X-Git-Tag: v3.6_beta2~682 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/537c056a021b3f8955560913638ce292d575e862?ds=sidebyside protect this file against multiple inclusions to fix supernovae (oops) git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@9241 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/include/xbt/replay_trace_reader.h b/include/xbt/replay_trace_reader.h index ae005c3ece..f1bc66e5a3 100644 --- a/include/xbt/replay_trace_reader.h +++ b/include/xbt/replay_trace_reader.h @@ -6,6 +6,8 @@ /* 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. */ +#ifndef XBT_REPLAY_TRACE_READER_H +#define XBT_REPLAY_TRACE_READER_H #include "xbt/misc.h" /* SG_BEGIN_DECL */ SG_BEGIN_DECL() @@ -18,3 +20,5 @@ void xbt_replay_trace_reader_free(xbt_replay_trace_reader_t *reader); const char *xbt_replay_trace_reader_position(xbt_replay_trace_reader_t reader); SG_END_DECL() + +#endif /* XBT_REPLAY_TRACE_READER_H */