diff --git a/cocci/memcpy.spatch b/cocci/memcpy.spatch new file mode 100644 index 0000000000..f5e50e7142 --- /dev/null +++ b/cocci/memcpy.spatch @@ -0,0 +1,14 @@ +@has_string_h@ +@@ + +#include + +@depends on has_string_h@ + +expression D; +expression S; +expression N; +@@ + +- memcpy(D, S, N); ++ memmove(D, S, N);