mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-03 05:20:16 +02:00
gh bug fix
This commit is contained in:
parent
ef0f106fc3
commit
18daf95b39
2 changed files with 13 additions and 0 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
1997-11-26 Anthony Green <green@hoser.cygnus.com>
|
||||||
|
|
||||||
|
* gh_data.c (gh_set_substr): Strings can be longer than 256 bytes.
|
||||||
|
|
||||||
|
* gh.h: Safely wrap prototypes for c++ usage.
|
||||||
|
|
||||||
1997-11-25 Mark Galassi <rosalia@cygnus.com>
|
1997-11-25 Mark Galassi <rosalia@cygnus.com>
|
||||||
|
|
||||||
* gh_test_repl.c (main_prog): changed invocation of gh_repl() to
|
* gh_test_repl.c (main_prog): changed invocation of gh_repl() to
|
||||||
|
|
|
@ -43,6 +43,10 @@
|
||||||
#ifndef __GH_H
|
#ifndef __GH_H
|
||||||
#define __GH_H
|
#define __GH_H
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
#include <libguile.h>
|
#include <libguile.h>
|
||||||
|
@ -226,5 +230,8 @@ void gh_newline (void);
|
||||||
|
|
||||||
/* void gh_assert(int cond, char *msg, SCM obj); */
|
/* void gh_assert(int cond, char *msg, SCM obj); */
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif /* __GH_H */
|
#endif /* __GH_H */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue