diff options
| author | sewn <sewn@disroot.org> | 2025-07-07 20:20:32 +0300 |
|---|---|---|
| committer | Randy Palamar <randy@rnpnr.xyz> | 2025-11-27 13:20:10 -0700 |
| commit | 2c127cc425d8d01e865440d1fde598df9dc8471d (patch) | |
| tree | 625288eefdd3e7ff54f45cd47cbf1962a3c48eaa /ui-terminal.c | |
| parent | 065b905fe05283820bb68d56c4057bd2c8484fc1 (diff) | |
| download | vis-2c127cc425d8d01e865440d1fde598df9dc8471d.tar.gz vis-2c127cc425d8d01e865440d1fde598df9dc8471d.tar.xz | |
ui: add missing includes for printfs
functions such as [v]snprintf and sscanf require stdio and stdarg.
Diffstat (limited to 'ui-terminal.c')
| -rw-r--r-- | ui-terminal.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ui-terminal.c b/ui-terminal.c index 00636a0..a96bea3 100644 --- a/ui-terminal.c +++ b/ui-terminal.c @@ -1,5 +1,7 @@ #include <unistd.h> #include <stdlib.h> +#include <stdio.h> +#include <stdarg.h> #include <string.h> #include <strings.h> #include <limits.h> |
