diff options
author | axtloss <axtlos@getcryst.al> | 2024-07-11 02:56:56 +0200 |
---|---|---|
committer | axtloss <axtlos@getcryst.al> | 2024-07-11 02:56:56 +0200 |
commit | 3e85fcb0270c9224ab95dac02c737e6676974c8e (patch) | |
tree | 2ec96323ef26f9ec1fee8ac6a0b718700e909eda /tests/Makefile | |
parent | e8f6d6c71b45062cc7ec4dcadcecba44af39a15d (diff) | |
download | extlib-3e85fcb0270c9224ab95dac02c737e6676974c8e.tar.gz extlib-3e85fcb0270c9224ab95dac02c737e6676974c8e.tar.bz2 |
Implement memset_s and improve free_secure
Diffstat (limited to 'tests/Makefile')
-rw-r--r-- | tests/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Makefile b/tests/Makefile index 660a20f..b4ed98e 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -4,7 +4,7 @@ CC = cc CFLAGS = -g -fsanitize=address,undefined test: FORCE - $(CC) test.c ../src/extlib.c ../src/extstring.c $(CFLAGS) -o test + $(CC) test.c ../src/extlib.c ../src/extstring.c ../src/constraint_handler.c ../src/memset_s.c $(CFLAGS) -o test ./test FORCE: ; # PHONY is a non standard extension |