mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-01 03:22:48 -05:00
Miscellaneous fixes to finish up `remove-statics'. rlogin.c had a
holdout static I hadn't noticed; unicode.c had one too; and a large number of statics that were perfectly OK due to being constants have been made `const', with assorted `const' repercussions all over the place. I now declare `remove-statics' to be fixed. [originally from svn r2594]
This commit is contained in:
4
putty.h
4
putty.h
@ -493,8 +493,8 @@ void registry_cleanup(void);
|
||||
* which I can reliably set aside to indicate `nil'. The string
|
||||
* function is perfectly all right returning NULL, of course.)
|
||||
*/
|
||||
char *platform_default_s(char *name);
|
||||
int platform_default_i(char *name, int def);
|
||||
char *platform_default_s(const char *name);
|
||||
int platform_default_i(const char *name, int def);
|
||||
|
||||
/*
|
||||
* Exports from terminal.c.
|
||||
|
Reference in New Issue
Block a user