about summary refs log tree commit diff
path: root/chat.h
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-02-13 21:57:55 -0500
committerJune McEnroe <june@causal.agency>2020-02-13 21:57:55 -0500
commit1e226593ef9860237ec08ad66affcb7da7138f5d (patch)
tree2b0bc6c5902166a71412128cd17f4f4c066906ba /chat.h
parentSet swap correctly when closing a window (diff)
downloadcatgirl-1e226593ef9860237ec08ad66affcb7da7138f5d.tar.gz
catgirl-1e226593ef9860237ec08ad66affcb7da7138f5d.zip
Rename procPipe to utilPipe
Diffstat (limited to 'chat.h')
-rw-r--r--chat.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/chat.h b/chat.h
index 0ef0952..b852c44 100644
--- a/chat.h
+++ b/chat.h
@@ -28,8 +28,6 @@
 
 typedef unsigned char byte;
 
-int procPipe[2];
-
 enum Color {
 	White, Black, Blue, Green, Red, Brown, Magenta, Orange,
 	Yellow, LightGreen, Cyan, LightCyan, LightBlue, Pink, Gray, LightGray,
@@ -147,6 +145,8 @@ const char *commandIsNotice(size_t id, const char *input);
 const char *commandIsAction(size_t id, const char *input);
 void commandComplete(void);
 
+int utilPipe[2];
+
 enum { UtilCap = 16 };
 struct Util {
 	size_t argc;