testing: cleanup
[awesomized/libmemcached] / test / lib / common.cpp
diff --git a/test/lib/common.cpp b/test/lib/common.cpp
deleted file mode 100644 (file)
index c516a3d..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-#include "common.hpp"
-
-#include <cstdlib>
-
-const char *getenv_else(const char *var, const char *defval) {
-  auto val = getenv(var);
-  if (val && *val) {
-    return val;
-  }
-  return defval;
-}
-