aboutsummaryrefslogtreecommitdiff
path: root/03-refactor/include/printf.h
diff options
context:
space:
mode:
Diffstat (limited to '03-refactor/include/printf.h')
-rw-r--r--03-refactor/include/printf.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/03-refactor/include/printf.h b/03-refactor/include/printf.h
deleted file mode 100644
index ec3eec0..0000000
--- a/03-refactor/include/printf.h
+++ /dev/null
@@ -1,15 +0,0 @@
-#ifndef PRINTF_H_
-#define PRINTF_H_
-
-#include <stdarg.h>
-#include <stdlib.h>
-
-typedef void(*printf_callback_t)(volatile void*, char);
-
-void printf_format(
- const char* fmt,
- printf_callback_t callback,
- volatile void* callback_closure,
- va_list lst);
-
-#endif /* PRINTF_H_ */