1
0
mirror of https://github.com/UzixLS/picocom.git synced 2025-07-19 07:21:18 +03:00

Add a private field to term_s

Provide an opaque private field for term_ops providers.
This commit is contained in:
David Leonard
2018-02-10 19:32:26 +10:00
committed by Nick Patavalis
parent 50991163b0
commit fa87795a89

View File

@ -11,6 +11,7 @@ struct term_s {
struct termios origtermios;
struct termios currtermios;
struct termios nexttermios;
void *priv;
};
/* Operations on a term */