-fix ftbfs
[oweals/gnunet.git] / src / sensor / gnunet_sensor_model_plugin.h
index ddb39a928375351d46ca43b3f5e0382cf573f33c..c49464a696a01342fae59f209b22d4b1b0ae9e04 100644 (file)
@@ -1,6 +1,6 @@
 /*
      This file is part of GNUnet
-     (C) 2012, 2013 Christian Grothoff (and other contributing authors)
+     Copyright (C) 2012, 2013 Christian Grothoff (and other contributing authors)
 
      GNUnet is free software; you can redistribute it and/or modify
      it under the terms of the GNU General Public License as published
@@ -54,16 +54,14 @@ struct GNUNET_SENSOR_ModelFunctions
    * @param cls closure (plugin state)
    * @return model state to be used for later calls
    */
-  void *
-  (*create_model) (void *cls);
+  void *(*create_model) (void *cls);
 
   /*
    * Destroy a model instance
    *
    * @param cls closure (model state)
    */
-  void
-  (*destroy_model) (void *cls);
+  void (*destroy_model) (void *cls);
 
   /*
    * Feed a new value to a model
@@ -72,8 +70,7 @@ struct GNUNET_SENSOR_ModelFunctions
    * @param val value to be fed to the model
    * @return #GNUNET_YES in case of a detected outlier, #GNUNET_NO otherwise
    */
-  int
-  (*feed_model) (void *cls, double val);
+  int (*feed_model) (void *cls, double val);
 
 };