From 1f89cb139b9f91620f4932a7cffaa67aa1e65c92 Mon Sep 17 00:00:00 2001 From: mquinson Date: Wed, 7 Feb 2007 15:38:22 +0000 Subject: [PATCH 1/1] Do not put the extern keyword several times (XBT_PUBLIC adds a new one) git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@3096 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- include/xbt/log.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/include/xbt/log.h b/include/xbt/log.h index 1bd282ab25..4301f3b329 100644 --- a/include/xbt/log.h +++ b/include/xbt/log.h @@ -194,7 +194,7 @@ typedef enum { /* Functions you may call */ -XBT_PUBLIC(extern void) xbt_log_control_set(const char* cs); +XBT_PUBLIC(void) xbt_log_control_set(const char* cs); /* Forward declarations */ typedef struct xbt_log_appender_s s_xbt_log_appender_t,*xbt_log_appender_t; @@ -238,7 +238,7 @@ struct xbt_log_event_s { * * Programatically alters a category's threshold priority (don't use). */ -XBT_PUBLIC(extern void) xbt_log_threshold_set(xbt_log_category_t cat, +XBT_PUBLIC(void) xbt_log_threshold_set(xbt_log_category_t cat, e_xbt_log_priority_t thresholdPriority); /** @@ -248,7 +248,7 @@ XBT_PUBLIC(extern void) xbt_log_threshold_set(xbt_log_category_t cat, * * Programatically alter a category's parent (don't use). */ -XBT_PUBLIC(extern void) xbt_log_parent_set(xbt_log_category_t cat, +XBT_PUBLIC(void) xbt_log_parent_set(xbt_log_category_t cat, xbt_log_category_t parent); /** @@ -258,15 +258,15 @@ XBT_PUBLIC(extern void) xbt_log_parent_set(xbt_log_category_t cat, * * Programatically sets the category's appender (don't use). */ -XBT_PUBLIC(extern void) xbt_log_appender_set(xbt_log_category_t cat, +XBT_PUBLIC(void) xbt_log_appender_set(xbt_log_category_t cat, xbt_log_appender_t app); /* Functions that you shouldn't call. */ -XBT_PUBLIC(extern void) _xbt_log_event_log(xbt_log_event_t ev, +XBT_PUBLIC(void) _xbt_log_event_log(xbt_log_event_t ev, const char *fmt, ...) _XBT_GNUC_PRINTF(2,3); -XBT_PUBLIC(extern int) _xbt_log_cat_init(e_xbt_log_priority_t priority, +XBT_PUBLIC(int) _xbt_log_cat_init(e_xbt_log_priority_t priority, xbt_log_category_t category); -- 2.20.1