| Commit | Line | Data |
|---|---|---|
| eeab7066 RT |
1 | /* |
| 2 | ||
| 3 | This code was written as part of the CMU Common Lisp project at | |
| 4 | Carnegie Mellon University, and has been placed in the public domain. | |
| 5 | ||
| 6 | */ | |
| 62957726 | 7 | |
| 8 | #ifndef _DYNBIND_H_ | |
| 9 | #define _DYNBIND_H_ | |
| 10 | ||
| 11 | extern void bind_variable(lispobj symbol, lispobj value); | |
| 12 | extern void unbind(void); | |
| 9a8c1c2f | 13 | extern void unbind_to_here(lispobj * bsp); |
| 62957726 | 14 | |
| e67c0397 | 15 | #endif /* _DYNBIND_H_ */ |