summaryrefslogtreecommitdiff
path: root/src/include/commands.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/commands.h')
-rw-r--r--src/include/commands.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/commands.h b/src/include/commands.h
index 3fd2cb8..d16a4ea 100644
--- a/src/include/commands.h
+++ b/src/include/commands.h
@@ -1,5 +1,6 @@
#ifndef COMMANDS_H
#define COMMANDS_H
+#include "buffer.h"
struct commands {
char *text;
@@ -7,6 +8,6 @@ struct commands {
void (*flush)();
} ;
-int commands();
+int commands(buffer *,struct commands *);
#endif