diff options
author | Dirk Herrmann <dirk@dirk-herrmanns-seiten.de> | 2001-03-15 00:42:10 +0000 |
---|---|---|
committer | Dirk Herrmann <dirk@dirk-herrmanns-seiten.de> | 2001-03-15 00:42:10 +0000 |
commit | 80dee77b864c3b98bc17f4c130445a47c3e65e54 (patch) | |
tree | b6ccc1ad961097e470c4f0cffc8622d385c76bd1 /libguile/gh.h | |
parent | d3dd80ab5b01c4726b774942b45902e73a877a3c (diff) | |
download | guile-80dee77b864c3b98bc17f4c130445a47c3e65e54.tar.gz |
* Use const specifier in function signature of gh_ints2scm.
Diffstat (limited to 'libguile/gh.h')
-rw-r--r-- | libguile/gh.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/gh.h b/libguile/gh.h index 447c43867..c7c88907c 100644 --- a/libguile/gh.h +++ b/libguile/gh.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1995,1996,1997,1998, 2000 Free Software Foundation, Inc. +/* Copyright (C) 1995,1996,1997,1998,2000,2001 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -104,7 +104,7 @@ SCM gh_str2scm(const char *s, int len); SCM gh_str02scm(const char *s); void gh_set_substr(char *src, SCM dst, int start, int len); SCM gh_symbol2scm(const char *symbol_str); -SCM gh_ints2scm(int *d, int n); +SCM gh_ints2scm(const int *d, int n); #ifdef HAVE_ARRAYS SCM gh_chars2byvect(const char *d, int n); |