add meson support
[protos/libecoli.git] / libecoli / ecoli_utils.h
diff --git a/libecoli/ecoli_utils.h b/libecoli/ecoli_utils.h
deleted file mode 100644 (file)
index 5a14192..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-/* SPDX-License-Identifier: BSD-3-Clause
- * Copyright 2018, Olivier MATZ <zer0@droids-corp.org>
- */
-
-#ifndef ECOLI_UTILS_
-#define ECOLI_UTILS_
-
-/**
- * Cast a variable into a type, ensuring its initial type first
- */
-#define EC_CAST(x, old_type, new_type) ({      \
-       old_type __x = (x);                     \
-       (new_type)__x;                          \
-       })
-
-#endif