diff options
author | midipix <writeonce@midipix.org> | 2018-07-14 12:39:38 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-07-14 20:07:40 -0400 |
commit | f72a4025ada2230fea795b9e43c58490fb0fc6b3 (patch) | |
tree | c88e4c892a4caa45f8661744a5b21f928e58b6af /project | |
parent | 9c9e94539f1d98036593e53a8f718126620b3a64 (diff) | |
download | apimagic-f72a4025ada2230fea795b9e43c58490fb0fc6b3.tar.bz2 apimagic-f72a4025ada2230fea795b9e43c58490fb0fc6b3.tar.xz |
internals: added amgc_dprintf(), a signal-resilient dprintf implementation.
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 45c3178..c6a7dd8 100644 --- a/project/common.mk +++ b/project/common.mk @@ -17,6 +17,7 @@ API_SRCS = \ src/skin/amgc_skin_default.c \ INTERNAL_SRCS = \ + src/internal/$(PACKAGE)_dprintf_impl.c \ src/internal/$(PACKAGE)_errinfo_impl.c \ APP_SRCS = \ diff --git a/project/headers.mk b/project/headers.mk index 1f50364..0c357bc 100644 --- a/project/headers.mk +++ b/project/headers.mk @@ -4,6 +4,7 @@ API_HEADERS = \ INTERNAL_HEADERS = \ $(PROJECT_DIR)/src/internal/argv/argv.h \ + $(PROJECT_DIR)/src/internal/$(PACKAGE)_dprintf_impl.h \ $(PROJECT_DIR)/src/internal/$(PACKAGE)_driver_impl.h \ $(PROJECT_DIR)/src/internal/$(PACKAGE)_errinfo_impl.h \ |