diff options
author | midipix <writeonce@midipix.org> | 2024-04-27 19:48:23 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2024-04-27 20:21:10 +0000 |
commit | 3f97b6f6c344500e0005063d1580afdb32c333e4 (patch) | |
tree | 6565a73cf488b9e0f5f76ad74c98df75e7e21aee /project | |
parent | 94cf00515f7abf57abafb091a64a32cda2fab7c6 (diff) | |
download | mdso-3f97b6f6c344500e0005063d1580afdb32c333e4.tar.bz2 mdso-3f97b6f6c344500e0005063d1580afdb32c333e4.tar.xz |
mdso_create_implib_objects(): eliminate the use of sprintf().
Diffstat (limited to 'project')
-rw-r--r-- | project/common.mk | 1 | ||||
-rw-r--r-- | project/headers.mk | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/project/common.mk b/project/common.mk index a52f593..95f765d 100644 --- a/project/common.mk +++ b/project/common.mk @@ -22,6 +22,7 @@ API_SRCS = \ INTERNAL_SRCS = \ src/internal/$(PACKAGE)_dprintf_impl.c \ src/internal/$(PACKAGE)_errinfo_impl.c \ + src/internal/$(PACKAGE)_hexfmt_impl.c \ APP_SRCS = \ src/mdso.c diff --git a/project/headers.mk b/project/headers.mk index a238cfe..d4a351a 100644 --- a/project/headers.mk +++ b/project/headers.mk @@ -14,6 +14,7 @@ INTERNAL_HEADERS = \ $(PROJECT_DIR)/src/internal/$(PACKAGE)_dprintf_impl.h \ $(PROJECT_DIR)/src/internal/$(PACKAGE)_driver_impl.h \ $(PROJECT_DIR)/src/internal/$(PACKAGE)_errinfo_impl.h \ + $(PROJECT_DIR)/src/internal/$(PACKAGE)_hexfmt_impl.h \ $(PROJECT_DIR)/src/internal/$(PACKAGE)_object_impl.h \ ALL_HEADERS = $(API_HEADERS) $(INTERNAL_HEADERS) |