Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
I'll manage to organize that cruft. Ignore the cvs commits in the next few days
[simgrid.git] / src / gras / DataDesc / tools.c
diff --git a/src/gras/DataDesc/tools.c b/src/gras/DataDesc/tools.c
deleted file mode 100644 (file)
index f6e0542..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-/* gs_tools.c */
-
-#include "DataDesc/gs_private.h"
-
-void *
-gs_memdup(const void * const ptr,
-          const size_t       length) {
-  void * new_ptr = NULL;
-
-  new_ptr = malloc(length);
-
-  if (new_ptr) {
-    memcpy(new_ptr, ptr, length);
-  }
-
-  return new_ptr;
-}
-