X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=panel%2Fllib-lpaneltw;h=331e87a00c9391520c43f5cb9ffdef42cea542ef;hp=1d3cd8d84c8f26d319572f6d529b9702eac0fb1e;hb=f67a188e71a0e6f80c1c45e50e7a7449c2d7bfb3;hpb=77afe78361875f531dc2bf8d73f2e781c8e76176 diff --git a/panel/llib-lpaneltw b/panel/llib-lpaneltw index 1d3cd8d8..331e87a0 100644 --- a/panel/llib-lpaneltw +++ b/panel/llib-lpaneltw @@ -1,5 +1,6 @@ /**************************************************************************** - * Copyright (c) 2010 Free Software Foundation, Inc. * + * Copyright 2020 Thomas E. Dickey * + * Copyright 2010,2015 Free Software Foundation, Inc. * * * * Permission is hereby granted, free of charge, to any person obtaining a * * copy of this software and associated documentation files (the * @@ -27,7 +28,7 @@ ****************************************************************************/ /**************************************************************************** - * Author: Thomas E. Dickey 2010 * + * Author: Thomas E. Dickey 2010-on * ****************************************************************************/ /* LINTLIBRARY */ @@ -181,13 +182,13 @@ void update_panels(void) #undef set_panel_userptr int set_panel_userptr( PANEL *pan, - void *uptr) + const void *uptr) { return(*(int *)0); } #undef panel_userptr -void *panel_userptr( +const void *panel_userptr( const PANEL *pan) - { return(*(void **)0); } + { return(*(const void **)0); } /* ./p_win.c */