1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-08 22:50:27 +02:00

* coop-defs.h (coop_key_create): Don't use the C++ keyword

`destructor' in prototype.  Thanks to Martin Baulig!
This commit is contained in:
Marius Vollmer 2000-10-02 21:32:57 +00:00
parent 77cd7f80f0
commit 817e55b939

View file

@ -197,7 +197,7 @@ typedef int coop_k;
typedef coop_k scm_key_t;
extern int coop_key_create (coop_k *keyp, void (*destructor) (void *value));
extern int coop_key_create (coop_k *keyp, void (*destruktor) (void *value));
extern int coop_setspecific (coop_k key, const void *value);
extern void *coop_getspecific (coop_k key);
extern int coop_key_delete (coop_k);