Merge pull request #57 from rcombs/patch-1

Include stdio.h from editline.h
This commit is contained in:
Joachim Wiberg
2022-02-19 22:09:15 +01:00
committed by GitHub

View File

@@ -21,6 +21,8 @@
#ifndef EDITLINE_H_
#define EDITLINE_H_
#include <stdio.h>
/* Handy macros when binding keys. */
#define CTL(x) ((x) & 0x1F)
#define ISCTL(x) ((x) && (x) < ' ')