summaryrefslogtreecommitdiff
path: root/panel/llib-lpanelt
diff options
context:
space:
mode:
Diffstat (limited to 'panel/llib-lpanelt')
-rw-r--r--panel/llib-lpanelt11
1 files changed, 6 insertions, 5 deletions
diff --git a/panel/llib-lpanelt b/panel/llib-lpanelt
index 8fcd42c..331e87a 100644
--- a/panel/llib-lpanelt
+++ b/panel/llib-lpanelt
@@ -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 */