about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorMichael Vetter <jubalh@iodoru.org>2022-03-04 14:26:18 +0100
committerMichael Vetter <jubalh@iodoru.org>2022-03-04 14:26:18 +0100
commit9578b03bf64b445aa7f2699bd346e82888ca19d3 (patch)
tree8bb8f0f97a5103f5bb92a300c8b6bb8d03ebcf3c
parenta6dda412981c17f742622093b40e577b91a7ea79 (diff)
downloadprofani-tty-9578b03bf64b445aa7f2699bd346e82888ca19d3.tar.gz
Include errno header in editor.c
-rw-r--r--src/tools/editor.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tools/editor.c b/src/tools/editor.c
index 068f5e84..e479db23 100644
--- a/src/tools/editor.c
+++ b/src/tools/editor.c
@@ -35,8 +35,9 @@
  */
 
 #include <fcntl.h>
-#include <glib.h>
 #include <sys/wait.h>
+#include <errno.h>
+#include <glib.h>
 #include <gio/gio.h>
 
 #include "config/files.h"