sn-transpositionsort: New tool.
[sort-networks.git] / src / pop_stats.c
index a387d4c..7f799f8 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * collectd - src/pop_stats.c
+ * libsortnetwork - src/pop_stats.c
  * Copyright (C) 2009-2010  Florian octo Forster
  *
  * This program is free software; you can redistribute it and/or modify it
  *   Florian octo Forster <ff at octo.it>
  **/
 
+#ifndef _ISOC99_SOURCE
+# define _ISOC99_SOURCE
+#endif
+#ifndef _POSIX_C_SOURCE
+# define _POSIX_C_SOURCE 200809L
+#endif
+#ifndef _XOPEN_SOURCE
+# define _XOPEN_SOURCE 700
+#endif
+
 #include <stdlib.h>
 #include <stdio.h>
 #include <stdint.h>
 
 #include "pop_stats.h"
 
-/* Yes, this is ugly, but the GNU libc doesn't export it with the above flags.
- * */
-char *strdup (const char *s);
-
 struct pop_stats_s /* {{{ */
 {
   pthread_mutex_t lock;