summaryrefslogtreecommitdiffhomepage
path: root/src/internal/perk_dprintf_impl.h
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2018-06-26 14:18:11 +0000
committermidipix <writeonce@midipix.org>2018-07-14 22:11:25 -0400
commitc353c661a24622db379f19fb401861dea8740f4b (patch)
tree334a0b3de430a0884d8b955d60d725d6a2cc0742 /src/internal/perk_dprintf_impl.h
parentae96cc9d975d7f65c3abc73db3c4f22984faa00c (diff)
downloadperk-c353c661a24622db379f19fb401861dea8740f4b.tar.bz2
perk-c353c661a24622db379f19fb401861dea8740f4b.tar.xz
internals: added pe_dprintf(), a signal-resilient dprintf implementation.
Diffstat (limited to 'src/internal/perk_dprintf_impl.h')
-rw-r--r--src/internal/perk_dprintf_impl.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/internal/perk_dprintf_impl.h b/src/internal/perk_dprintf_impl.h
new file mode 100644
index 0000000..61e400d
--- /dev/null
+++ b/src/internal/perk_dprintf_impl.h
@@ -0,0 +1,6 @@
+#ifndef PERK_DPRINTF_IMPL_H
+#define PERK_DPRINTF_IMPL_H
+
+int pe_dprintf(int fd, const char * fmt, ...);
+
+#endif