mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-28 12:39:28 +00:00
Sprinkle some const on char * params. (#298)
This is enough to let us move `il_string` in `loopsops.c` into read-only storage.
This commit is contained in:
@@ -107,7 +107,7 @@ void print_atomname(LispPTR index)
|
||||
|
||||
#define PACKAGES_LIMIT 255
|
||||
/** GET PACKAGE INDEX from PACKAGE FULL NAME */
|
||||
int find_package_from_name(char *packname, int len) {
|
||||
int find_package_from_name(const char *packname, int len) {
|
||||
int index;
|
||||
PACKAGE *package;
|
||||
NEWSTRINGP *namestring;
|
||||
|
||||
Reference in New Issue
Block a user