Drop most 'const's from function prototypes

darcs-hash:20060612214742-ac50b-9b0801e8a7c07d6ab3f0acf569e1d6eb1eeb3f0e.gz
This commit is contained in:
axel
2006-06-13 07:47:42 +10:00
parent 2c95e087b2
commit 9aee2b7c9c
18 changed files with 138 additions and 138 deletions

View File

@@ -1,5 +1,5 @@
/** \file input.c
a
Functions for reading a character of input from stdin, using the
inputrc information for key bindings.
@@ -1411,7 +1411,7 @@ int input_init()
/**
Free memory used by the specified mapping
*/
static void destroy_mapping( const void *key, const void *val )
static void destroy_mapping( void *key, void *val )
{
int i;
array_list_t *mappings = (array_list_t *)val;