1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 11:50:28 +02:00

(SCM_STRING_UCHARS): Added missing argument.

This commit is contained in:
Mikael Djurfeldt 2005-03-20 13:56:53 +00:00
parent aa9200e51a
commit e654b06261
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2005-03-20 Mikael Djurfeldt <djurfeldt@nada.kth.se>
* strings.h (SCM_STRING_UCHARS): Added missing argument.
2005-03-18 Kevin Ryde <user42@zip.com.au>
* arbiters.c (FETCH_STORE) [generic C]: Should be

View file

@ -3,7 +3,7 @@
#ifndef SCM_STRINGS_H
#define SCM_STRINGS_H
/* Copyright (C) 1995,1996,1997,1998,2000,2001, 2004 Free Software Foundation, Inc.
/* Copyright (C) 1995,1996,1997,1998,2000,2001, 2004, 2005 Free Software Foundation, Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
@ -156,7 +156,7 @@ SCM_API size_t scm_i_deprecated_string_length (SCM str);
#define SCM_STRINGP(x) scm_i_deprecated_stringp(x)
#define SCM_STRING_CHARS(x) scm_i_deprecated_string_chars(x)
#define SCM_STRING_LENGTH(x) scm_i_deprecated_string_length(x)
#define SCM_STRING_UCHARS ((unsigned char *)SCM_STRING_CHARS (str))
#define SCM_STRING_UCHARS(str) ((unsigned char *)SCM_STRING_CHARS (str))
#endif