diff options
author | Mattias Andrée <maandree@kth.se> | 2018-11-25 21:42:12 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2018-11-25 21:42:12 +0100 |
commit | 7e34c31e6bd3d4edcdc97a8afbd400af67060295 (patch) | |
tree | c109def7a6ef6f1178da52993dd28afeedcee3ec /Makefile | |
parent | Add arraydup macros (diff) | |
download | libsimple-7e34c31e6bd3d4edcdc97a8afbd400af67060295.tar.gz libsimple-7e34c31e6bd3d4edcdc97a8afbd400af67060295.tar.bz2 libsimple-7e34c31e6bd3d4edcdc97a8afbd400af67060295.tar.xz |
Add [e[n]]aligned_str[n]dup and aligned_str[n]dupa
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -7,6 +7,8 @@ SUBHDR =\ libsimple/aligned_alloc.h\ libsimple/aligned_allocz.h\ libsimple/aligned_memdup.h\ + libsimple/aligned_strdup.h\ + libsimple/aligned_strndup.h\ libsimple/array.h\ libsimple/calloc.h\ libsimple/definitions.h\ @@ -40,6 +42,7 @@ HDR =\ OBJ =\ aligned_memdup.o\ + aligned_strndup.o\ allocn.o\ asprintf.o\ difftimespec.o\ @@ -48,6 +51,8 @@ OBJ =\ doubletotimeval.o\ enaligned_allocz.o\ enaligned_memdup.o\ + enaligned_strdup.o\ + enaligned_strndup.o\ encalloc.o\ enmalloc.o\ enmemdup.o\ |