From 3bc2f404312dff4f60848f6303b1ff16f1fd7590 Mon Sep 17 00:00:00 2001 From: nick black Date: Thu, 11 Nov 2021 08:23:51 -0500 Subject: [PATCH] [notcurses.h] remove duplicate declarations --- include/notcurses/notcurses.h | 8 -------- 1 file changed, 8 deletions(-) diff --git a/include/notcurses/notcurses.h b/include/notcurses/notcurses.h index ab1a5cbaf..73297ce61 100644 --- a/include/notcurses/notcurses.h +++ b/include/notcurses/notcurses.h @@ -1046,14 +1046,6 @@ API int ncpile_render_to_buffer(struct ncplane* p, char** buf, size_t* buflen) API int ncpile_render_to_file(struct ncplane* p, FILE* fp) __attribute__ ((nonnull (1, 2))); -// Return the topmost ncplane of the standard pile. -API struct ncplane* notcurses_top(struct notcurses* n) - __attribute__ ((nonnull (1))); - -// Return the bottommost ncplane of the standard pile. -API struct ncplane* notcurses_bottom(struct notcurses* n) - __attribute__ ((nonnull (1))); - // Destroy all ncplanes other than the stdplane. API void notcurses_drop_planes(struct notcurses* nc) __attribute__ ((nonnull (1)));