From fe0c0154618d6150f44061690f9af75895aa4207 Mon Sep 17 00:00:00 2001 From: Prem Chaitanya Prathi Date: Wed, 1 May 2024 13:58:39 +0530 Subject: [PATCH] chore: address review comment --- cpp/Makefile | 2 +- cpp/{negentropy_wrapper.c => negentropy_wrapper.cpp} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename cpp/{negentropy_wrapper.c => negentropy_wrapper.cpp} (100%) diff --git a/cpp/Makefile b/cpp/Makefile index 39f0719..44bf143 100644 --- a/cpp/Makefile +++ b/cpp/Makefile @@ -17,7 +17,7 @@ precompiled-header: g++ -O0 --std=c++20 -Wall -fexceptions -g negentropy.h $(INCS) shared-lib: - g++ -O0 -g -std=c++20 $(INCS) -shared -fPIC -o $(TARGET) negentropy_wrapper.c -lcrypto -lssl -L/opt/homebrew/lib/ + g++ -O0 -g -std=c++20 $(INCS) -shared -fPIC -o $(TARGET) negentropy_wrapper.cpp -lcrypto -lssl -L/opt/homebrew/lib/ clean: rm -f $(TARGET) negentropy.h.gch libnegentropy.so diff --git a/cpp/negentropy_wrapper.c b/cpp/negentropy_wrapper.cpp similarity index 100% rename from cpp/negentropy_wrapper.c rename to cpp/negentropy_wrapper.cpp