tighten formatting rules
[oweals/gnunet.git] / src / util / gnunet-service-resolver.c
index d7d456fba1566e0790eb77448943767b14ea532d..c82a18ab8440776e266d50c6215c02c91a463f61 100644 (file)
@@ -704,6 +704,7 @@ pack (const char *hostname,
   return GNUNET_OK;
 }
 
+
 static void
 cache_answers (const char *name,
                struct GNUNET_DNSPARSER_Record *records,
@@ -738,6 +739,7 @@ cache_answers (const char *name,
   }
 }
 
+
 /**
  * We got a result from DNS. Add it to the cache and
  * see if we can make our client happy...
@@ -1366,12 +1368,15 @@ GNUNET_SERVICE_MAIN (
 /**
  * MINIMIZE heap size (way below 128k) since this process doesn't need much.
  */
-void __attribute__ ((constructor)) GNUNET_RESOLVER_memory_init ()
+void __attribute__ ((constructor))
+GNUNET_RESOLVER_memory_init ()
 {
   mallopt (M_TRIM_THRESHOLD, 4 * 1024);
   mallopt (M_TOP_PAD, 1 * 1024);
   malloc_trim (0);
 }
+
+
 #endif