add render.h

This commit is contained in:
nick black 2021-11-17 04:36:43 -05:00
parent 0286798b2d
commit 952e4eaeb2
No known key found for this signature in database
GPG Key ID: 5F43400C21CBFACC

16
src/lib/render.h Normal file
View File

@ -0,0 +1,16 @@
#ifndef NOTCURSES_RENDER
#define NOTCURSES_RENDER
#ifdef __cplusplus
extern "C" {
#endif
#include <signal.h>
extern sig_atomic_t sigcont_seen_for_render;
#ifdef __cplusplus
}
#endif
#endif