commit 605f11cae7a35fdd65bf207c77837b85008de6dd parent a6df082f4d832e98fb633590939adaf90f4726ec Author: dracuxan <[email protected]> Date: Mon, 27 Apr 2026 12:01:37 +0530 rename Diffstat:
| M | mix.exs | | | 4 | ++-- |
| R | src/genetic.c -> src/random.c | | | 0 |
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/mix.exs b/mix.exs @@ -11,8 +11,8 @@ defmodule Mix.Tasks.Compile.Cnif do "-fpic", "-shared", "-o", - "priv/genetic.so", - "src/genetic.c" + "priv/random.so", + "src/random.c" ], stderr_to_stdout: true ) diff --git a/src/genetic.c b/src/random.c