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
commit fc866f60d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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) < ' ')