* convert.c: include <string.h> for convert_i.c.
[bpt/guile.git] / libguile / __scm.h
1 /* classes: h_files */
2
3 #ifndef SCM___SCM_H
4 #define SCM___SCM_H
5
6 /* Copyright (C) 1995,1996,1998,1999,2000,2001 Free Software Foundation, Inc.
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2, or (at your option)
11 * any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this software; see the file COPYING. If not, write to
20 * the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
21 * Boston, MA 02111-1307 USA
22 *
23 * As a special exception, the Free Software Foundation gives permission
24 * for additional uses of the text contained in its release of GUILE.
25 *
26 * The exception is that, if you link the GUILE library with other files
27 * to produce an executable, this does not by itself cause the
28 * resulting executable to be covered by the GNU General Public License.
29 * Your use of that executable is in no way restricted on account of
30 * linking the GUILE library code into it.
31 *
32 * This exception does not however invalidate any other reasons why
33 * the executable file might be covered by the GNU General Public License.
34 *
35 * This exception applies only to the code released by the
36 * Free Software Foundation under the name GUILE. If you copy
37 * code from other Free Software Foundation releases into a copy of
38 * GUILE, as the General Public License permits, the exception does
39 * not apply to the code that you add in this way. To avoid misleading
40 * anyone as to the status of such modified files, you must delete
41 * this exception notice from them.
42 *
43 * If you write modifications of your own for GUILE, it is your choice
44 * whether to permit this exception to apply to your modifications.
45 * If you do not wish that, delete this exception notice. */
46
47 \f
48
49 /* "What's the difference between _scm.h and __scm.h?"
50
51 _scm.h is not installed; it's only visible to the libguile sources
52 themselves.
53
54 __scm.h is installed, and is #included by <libguile.h>. If both
55 the client and libguile need some piece of information, and it
56 doesn't fit well into the header file for any particular module, it
57 should go in __scm.h. */
58
59
60 /* {Compiler hints}
61 *
62 * The following macros are used to provide additional information for the
63 * compiler, which may help to do better error checking and code
64 * optimization. A second benefit of these macros is, that they also provide
65 * additional information to the developers.
66 */
67
68 /* The macro SCM_NORETURN indicates that a function will never return.
69 * Examples:
70 * 1) int foo (char arg) SCM_NORETURN;
71 */
72 #ifdef __GNUC__
73 #define SCM_NORETURN __attribute__ ((noreturn))
74 #else
75 #define SCM_NORETURN
76 #endif
77
78 /* The macro SCM_UNUSED indicates that a function, function argument or
79 * variable may potentially be unused.
80 * Examples:
81 * 1) static int unused_function (char arg) SCM_UNUSED;
82 * 2) int foo (char unused_argument SCM_UNUSED);
83 * 3) int unused_variable SCM_UNUSED;
84 */
85 #ifdef __GNUC__
86 #define SCM_UNUSED __attribute__ ((unused))
87 #else
88 #define SCM_UNUSED
89 #endif
90
91
92 /* {Supported Options}
93 *
94 * These may be defined or undefined.
95 */
96
97 /* Old async mechanism */
98 /* #define GUILE_OLD_ASYNC_CLICK */
99
100 /* #define GUILE_DEBUG_FREELIST */
101
102 /* If the compile FLAG `SCM_CAUTIOUS' is #defined then the number of
103 * arguments is always checked for application of closures. If the
104 * compile FLAG `SCM_RECKLESS' is #defined then they are not checked.
105 * Otherwise, number of argument checks for closures are made only
106 * when the function position (whose value is the closure) of a
107 * combination is not an ILOC or a variable (true?). When the
108 * function position of a combination is a symbol it will be checked
109 * only the first time it is evaluated because it will then be
110 * replaced with an ILOC or variable.
111 */
112 #undef SCM_RECKLESS
113 #define SCM_CAUTIOUS
114
115 /* After looking up a local for the first time, rewrite the
116 * code graph, caching its position.
117 */
118 #define MEMOIZE_LOCALS
119
120 /* All the number support there is.
121 */
122 #define BIGNUMS
123
124 /* GC should relinquish empty cons-pair arenas. */
125 /* cmm:FIXME look at this after done mangling the GC */
126 /* #define GC_FREE_SEGMENTS */
127
128 /* Provide a scheme-accessible count-down timer that
129 * generates a pseudo-interrupt.
130 */
131 #define TICKS
132
133
134 /* Use engineering notation when converting numbers strings?
135 */
136 #undef ENGNOT
137
138 \f
139 /* {Unsupported Options}
140 *
141 * These must be defined as given here.
142 */
143
144
145 #define CCLO
146
147 /* Guile Scheme supports the #f/() distinction; Guile Lisp won't. We
148 have horrible plans for their unification. */
149 #undef SICP
150
151 \f
152
153 /* Random options (not yet supported or in final form). */
154
155 #define STACK_CHECKING
156 #undef NO_CEVAL_STACK_CHECKING
157
158 \f
159
160 /* SCM_API is a macro prepended to all function and data definitions
161 which should be exported or imported in the resulting dynamic link
162 library (DLL) in the Win32 port. */
163
164 #if defined (SCM_IMPORT)
165 # define SCM_API __declspec (dllimport) extern
166 #elif defined (SCM_EXPORT) || defined (DLL_EXPORT)
167 # define SCM_API __declspec (dllexport) extern
168 #else
169 # define SCM_API extern
170 #endif
171
172 \f
173
174 /* What did the configure script discover about the outside world? */
175 #include "libguile/scmconfig.h"
176
177 \f
178
179 /* {Debugging Options}
180 *
181 * These compile time options determine whether to include code that is only
182 * useful for debugging guile itself or C level extensions to guile. The
183 * common prefix for all option macros of this kind is "SCM_DEBUG_". It is
184 * guaranteed that a macro named SCM_DEBUG_XXX is defined to be either 0 or 1,
185 * i. e. there is no need to test for the undefined case. This allows to use
186 * these definitions comfortably within code, as in the following example:
187 * #define FOO do { if (SCM_DEBUG_XXX) bar(); else baz(); } while (0)
188 * Any sane compiler will remove the unused branch without any performance
189 * penalty for the resulting code.
190 *
191 * Note: Some SCM_DEBUG_XXX options are not settable at configure time.
192 * To change the value of such options you will have to edit this header
193 * file or give suitable options to make, like:
194 * make all CFLAGS="-DSCM_DEBUG_XXX=1 ..."
195 */
196
197
198 /* The value of SCM_DEBUG determines the default for most of the not yet
199 * defined debugging options. This allows, for example, to enable most of the
200 * debugging options by simply defining SCM_DEBUG as 1.
201 */
202 #ifndef SCM_DEBUG
203 #define SCM_DEBUG 0
204 #endif
205
206 /* If SCM_DEBUG_CELL_ACCESSES is set to 1, cell accesses will perform
207 * exhaustive parameter checking: It will be verified that cell parameters
208 * actually point to a valid heap cell. Note: If this option is enabled,
209 * guile will run about ten times slower than normally.
210 */
211 #ifndef SCM_DEBUG_CELL_ACCESSES
212 #define SCM_DEBUG_CELL_ACCESSES SCM_DEBUG
213 #endif
214
215 /* If SCM_DEBUG_INTERRUPTS is set to 1, with every deferring and allowing of
216 * interrupts a consistency check will be performed.
217 */
218 #ifndef SCM_DEBUG_INTERRUPTS
219 #define SCM_DEBUG_INTERRUPTS SCM_DEBUG
220 #endif
221
222 /* If SCM_DEBUG_PAIR_ACCESSES is set to 1, accesses to cons cells will be
223 * exhaustively checked. Note: If this option is enabled, guile will run
224 * slower than normally.
225 */
226 #ifndef SCM_DEBUG_PAIR_ACCESSES
227 #define SCM_DEBUG_PAIR_ACCESSES SCM_DEBUG
228 #endif
229
230 /* If SCM_DEBUG_REST_ARGUMENT is set to 1, functions that take rest arguments
231 * will check whether the rest arguments are actually passed as a proper list.
232 * Otherwise, if SCM_DEBUG_REST_ARGUMENT is 0, functions that take rest
233 * arguments will take it for granted that these are passed as a proper list.
234 */
235 #ifndef SCM_DEBUG_REST_ARGUMENT
236 #define SCM_DEBUG_REST_ARGUMENT SCM_DEBUG
237 #endif
238
239 /* Use this for _compile time_ type checking only, since the compiled result
240 * will be quite inefficient. The right way to make use of this option is to
241 * do a 'make clean; make CFLAGS=-DSCM_DEBUG_TYPING_STRICTNESS=1', fix your
242 * errors, and then do 'make clean; make'.
243 */
244 #ifndef SCM_DEBUG_TYPING_STRICTNESS
245 #define SCM_DEBUG_TYPING_STRICTNESS 1
246 #endif
247
248 \f
249
250 /* {Feature Options}
251 *
252 * These compile time options determine whether code for certain features
253 * should be compiled into guile. The common prefix for all option macros
254 * of this kind is "SCM_ENABLE_". It is guaranteed that a macro named
255 * SCM_ENABLE_XXX is defined to be either 0 or 1, i. e. there is no need to
256 * test for the undefined case. This allows to use these definitions
257 * comfortably within code, as in the following example:
258 * #define FOO do { if (SCM_ENABLE_XXX) bar(); else baz(); } while (0)
259 * Any sane compiler will remove the unused branch without any performance
260 * penalty for the resulting code.
261 *
262 * Note: Some SCM_ENABLE_XXX options are not settable at configure time.
263 * To change the value of such options you will have to edit this header
264 * file or give suitable options to make, like:
265 * make all CFLAGS="-DSCM_ENABLE_XXX=1 ..."
266 */
267
268 /* If SCM_ENABLE_DEPRECATED is set to 1, deprecated code will be included in
269 * guile, as well as some functions to issue run-time warnings about uses of
270 * deprecated functions.
271 */
272 #ifndef SCM_ENABLE_DEPRECATED
273 #define SCM_ENABLE_DEPRECATED 0
274 #endif
275
276 \f
277
278 /* {Architecture and compiler properties}
279 *
280 * Guile as of today can only work on systems which fulfill at least the
281 * following requirements:
282 * - long ints have at least 32 bits.
283 * Guile's type system is based on this assumption.
284 * - long ints consist of at least four characters.
285 * It is assumed that cells, i. e. pairs of long ints, are eight character
286 * aligned, because three bits of a cell pointer are used for type data.
287 * - sizeof (void*) == sizeof (long int)
288 * Pointers are stored in SCM objects, and sometimes SCM objects are passed
289 * as void*. Thus, there has to be a one-to-one correspondence.
290 * - numbers are encoded using two's complement.
291 * The implementation of the bitwise scheme level operations is based on
292 * this assumption.
293 * - ... add more
294 */
295
296 #if SIZEOF_UINTPTR_T != 0 && defined(UINTPTR_MAX) \
297 && defined(INTPTR_MAX) \
298 && defined(INTPTR_MIN)
299 /* Used as SCM if available, so we bundle related attributes to avoid possible
300 type incon[st][oi]n[ae]nce later. Word in tags.h. */
301 #define HAVE_UINTPTR_T 1
302 #endif
303
304 #if SIZEOF_PTRDIFF_T != 0
305 #define HAVE_PTRDIFF_T 1
306 #endif
307
308 #if SIZEOF_LONG_LONG != 0
309 #define HAVE_LONG_LONGS 1
310 #define HAVE_LONG_LONG 1
311 #endif
312
313 #ifndef HAVE_PTRDIFF_T
314 typedef long ptrdiff_t;
315 #endif
316
317 #ifdef HAVE_LIMITS_H
318 # include <limits.h>
319 #endif
320
321 #ifdef CHAR_BIT
322 # define SCM_CHAR_BIT CHAR_BIT
323 #else
324 # define SCM_CHAR_BIT 8
325 #endif
326
327 #ifdef LONG_BIT
328 # define SCM_LONG_BIT LONG_BIT
329 #else
330 # define SCM_LONG_BIT (SCM_CHAR_BIT * sizeof (long) / sizeof (char))
331 #endif
332
333 #ifdef UCHAR_MAX
334 # define SCM_CHAR_CODE_LIMIT (UCHAR_MAX + 1L)
335 #else
336 # define SCM_CHAR_CODE_LIMIT 256L
337 #endif
338
339 \f
340
341 #ifdef STDC_HEADERS
342 # include <stdlib.h>
343 # if HAVE_SYS_TYPES_H
344 # include <sys/types.h>
345 # endif
346 # if HAVE_SYS_STDTYPES_H
347 # include <sys/stdtypes.h>
348 # endif
349 # include <stddef.h>
350 #endif /* def STDC_HEADERS */
351
352 \f
353
354 /* Define some additional CPP macros on Win32 platforms. */
355 #if USE_DLL_IMPORT
356 # define __REGEX_IMPORT__ 1
357 # define __CRYPT_IMPORT__ 1
358 # define __READLINE_IMPORT__ 1
359 # define QT_IMPORT 1
360 #endif
361
362 \f
363
364 #include "libguile/tags.h"
365
366 \f
367 #ifdef vms
368 # ifndef CHEAP_CONTINUATIONS
369 typedef int jmp_buf[17];
370 extern int setjump(jmp_buf env);
371 extern int longjump(jmp_buf env, int ret);
372 # define setjmp setjump
373 # define longjmp longjump
374 # else
375 # include <setjmp.h>
376 # endif
377 #else /* ndef vms */
378 # ifdef _CRAY1
379 typedef int jmp_buf[112];
380 extern int setjump(jmp_buf env);
381 extern int longjump(jmp_buf env, int ret);
382 # define setjmp setjump
383 # define longjmp longjump
384 # else /* ndef _CRAY1 */
385 # include <setjmp.h>
386 # endif /* ndef _CRAY1 */
387 #endif /* ndef vms */
388
389 /* James Clark came up with this neat one instruction fix for
390 * continuations on the SPARC. It flushes the register windows so
391 * that all the state of the process is contained in the stack.
392 */
393
394 #ifdef sparc
395 # define SCM_FLUSH_REGISTER_WINDOWS asm("ta 3")
396 #else
397 # define SCM_FLUSH_REGISTER_WINDOWS /* empty */
398 #endif
399
400 /* If stack is not longword aligned then
401 */
402
403 /* #define SHORT_ALIGN */
404 #ifdef THINK_C
405 # define SHORT_ALIGN
406 #endif
407 #ifdef MSDOS
408 # define SHORT_ALIGN
409 #endif
410 #ifdef atarist
411 # define SHORT_ALIGN
412 #endif
413
414 #ifdef SHORT_ALIGN
415 typedef short SCM_STACKITEM;
416 #else
417 typedef long SCM_STACKITEM;
418 #endif
419 \f
420
421 #ifndef USE_THREADS
422 #define SCM_CRITICAL_SECTION_START
423 #define SCM_CRITICAL_SECTION_END
424 #define SCM_THREAD_SWITCHING_CODE
425 #endif
426
427 #ifdef GUILE_OLD_ASYNC_CLICK
428 SCM_API unsigned int scm_async_clock;
429
430 #define SCM_ASYNC_TICK \
431 do { \
432 if (0 == --scm_async_clock) \
433 scm_async_click (); \
434 } while(0)
435 #else
436 SCM_API int scm_asyncs_pending_p;
437
438 #define SCM_ASYNC_TICK /*fixme* should change names */ \
439 do { \
440 if (scm_asyncs_pending_p) \
441 scm_async_click (); \
442 } while (0)
443 #endif
444
445 #if (SCM_DEBUG_INTERRUPTS == 1)
446 #include <stdio.h>
447 #define SCM_CHECK_NOT_DISABLED \
448 do { \
449 if (scm_ints_disabled) \
450 fprintf(stderr, "ints already disabled (at %s:%d)\n", \
451 __FILE__, __LINE__); \
452 } while (0)
453
454 #define SCM_CHECK_NOT_ENABLED \
455 do { \
456 if (!scm_ints_disabled) \
457 fprintf(stderr, "ints already enabled (at %s:%d)\n", \
458 __FILE__, __LINE__); \
459 } while (0)
460
461 #else
462 #define SCM_CHECK_NOT_DISABLED
463 #define SCM_CHECK_NOT_ENABLED
464 #endif
465
466
467 /* Anthony Green writes:
468 When the compiler sees...
469 DEFER_INTS;
470 [critical code here]
471 ALLOW_INTS;
472 ...it doesn't actually promise to keep the critical code within the
473 boundries of the DEFER/ALLOW_INTS instructions. It may very well
474 schedule it outside of the magic defined in those macros.
475
476 However, GCC's volatile asm feature forms a barrier over which code is
477 never moved. So if you add...
478 asm ("");
479 ...to each of the DEFER_INTS and ALLOW_INTS macros, the critical
480 code will always remain in place. asm's without inputs or outputs
481 are implicitly volatile. */
482 #ifdef __GNUC__
483 #define SCM_FENCE asm /* volatile */ ("")
484 #else
485 #define SCM_FENCE
486 #endif
487
488 #define SCM_DEFER_INTS \
489 do { \
490 SCM_FENCE; \
491 SCM_CHECK_NOT_DISABLED; \
492 SCM_CRITICAL_SECTION_START; \
493 SCM_FENCE; \
494 scm_ints_disabled = 1; \
495 SCM_FENCE; \
496 } while (0)
497
498
499 #define SCM_ALLOW_INTS_ONLY \
500 do { \
501 SCM_CRITICAL_SECTION_END; \
502 scm_ints_disabled = 0; \
503 } while (0)
504
505
506 #define SCM_ALLOW_INTS \
507 do { \
508 SCM_FENCE; \
509 SCM_CHECK_NOT_ENABLED; \
510 SCM_CRITICAL_SECTION_END; \
511 SCM_FENCE; \
512 scm_ints_disabled = 0; \
513 SCM_FENCE; \
514 SCM_THREAD_SWITCHING_CODE; \
515 SCM_FENCE; \
516 } while (0)
517
518
519 #define SCM_REDEFER_INTS \
520 do { \
521 SCM_FENCE; \
522 SCM_CRITICAL_SECTION_START; \
523 ++scm_ints_disabled; \
524 SCM_FENCE; \
525 } while (0)
526
527
528 #define SCM_REALLOW_INTS \
529 do { \
530 SCM_FENCE; \
531 SCM_CRITICAL_SECTION_END; \
532 SCM_FENCE; \
533 --scm_ints_disabled; \
534 SCM_FENCE; \
535 } while (0)
536
537
538 #define SCM_TICK \
539 do { \
540 SCM_ASYNC_TICK; \
541 SCM_THREAD_SWITCHING_CODE; \
542 } while (0)
543
544 \f
545
546 /* Classification of critical sections
547 *
548 * When Guile moves to POSIX threads, it won't be possible to prevent
549 * context switching. In fact, the whole idea of context switching is
550 * bogus if threads are run by different processors. Therefore, we
551 * must ultimately eliminate all critical sections or enforce them by
552 * use of mutecis.
553 *
554 * All instances of SCM_DEFER_INTS and SCM_ALLOW_INTS should therefore
555 * be classified and replaced by one of the delimiters below. If you
556 * understand what this is all about, I'd like to encourage you to
557 * help with this task. The set of classes below must of course be
558 * incrementally augmented.
559 *
560 * MDJ 980419 <djurfeldt@nada.kth.se>
561 */
562
563 /* A sections
564 *
565 * Allocation of a cell with type tag in the CAR.
566 *
567 * With POSIX threads, each thread will have a private pool of free
568 * cells. Therefore, this type of section can be removed. But! It
569 * is important that the CDR is initialized first (with the CAR still
570 * indicating a free cell) so that we can guarantee a consistent heap
571 * at all times.
572 */
573
574 #define SCM_ENTER_A_SECTION SCM_CRITICAL_SECTION_START
575 #define SCM_EXIT_A_SECTION SCM_CRITICAL_SECTION_END
576
577 \f
578
579 /** SCM_ASSERT
580 **
581 **/
582
583
584 #ifdef SCM_RECKLESS
585 #define SCM_ASSERT(_cond, _arg, _pos, _subr)
586 #define SCM_ASSERT_TYPE(_cond, _arg, _pos, _subr, _msg)
587 #define SCM_ASRTGO(_cond, _label)
588 #else
589 #define SCM_ASSERT(_cond, _arg, _pos, _subr) \
590 if (!(_cond)) \
591 scm_wrong_type_arg (_subr, _pos, _arg)
592 #define SCM_ASSERT_TYPE(_cond, _arg, _pos, _subr, _msg) \
593 if (!(_cond)) \
594 scm_wrong_type_arg_msg(_subr, _pos, _arg, _msg)
595 #define SCM_ASRTGO(_cond, _label) \
596 if (!(_cond)) \
597 goto _label
598 #endif
599
600 /*
601 * SCM_WTA_DISPATCH
602 */
603
604 /* Dirk:FIXME:: In all of the SCM_WTA_DISPATCH_* macros it is assumed that
605 * 'gf' is zero if uninitialized. It would be cleaner if some valid SCM value
606 * like SCM_BOOL_F or SCM_UNDEFINED was chosen.
607 */
608
609 SCM_API SCM scm_call_generic_0 (SCM gf);
610
611 #define SCM_WTA_DISPATCH_0(gf, subr) \
612 return (SCM_UNPACK (gf) \
613 ? scm_call_generic_0 ((gf)) \
614 : (scm_error_num_args_subr ((subr)), SCM_UNSPECIFIED))
615 #define SCM_GASSERT0(cond, gf, subr) \
616 if (!(cond)) SCM_WTA_DISPATCH_0((gf), (subr))
617
618 SCM_API SCM scm_call_generic_1 (SCM gf, SCM a1);
619
620 #define SCM_WTA_DISPATCH_1(gf, a1, pos, subr) \
621 return (SCM_UNPACK (gf) \
622 ? scm_call_generic_1 ((gf), (a1)) \
623 : (scm_wrong_type_arg ((subr), (pos), (a1)), SCM_UNSPECIFIED))
624 #define SCM_GASSERT1(cond, gf, a1, pos, subr) \
625 if (!(cond)) SCM_WTA_DISPATCH_1((gf), (a1), (pos), (subr))
626
627 SCM_API SCM scm_call_generic_2 (SCM gf, SCM a1, SCM a2);
628
629 #define SCM_WTA_DISPATCH_2(gf, a1, a2, pos, subr) \
630 return (SCM_UNPACK (gf) \
631 ? scm_call_generic_2 ((gf), (a1), (a2)) \
632 : (scm_wrong_type_arg ((subr), (pos), \
633 (pos) == SCM_ARG1 ? (a1) : (a2)), \
634 SCM_UNSPECIFIED))
635 #define SCM_GASSERT2(cond, gf, a1, a2, pos, subr) \
636 if (!(cond)) SCM_WTA_DISPATCH_2((gf), (a1), (a2), (pos), (subr))
637
638 SCM_API SCM scm_apply_generic (SCM gf, SCM args);
639
640 #define SCM_WTA_DISPATCH_n(gf, args, pos, subr) \
641 return (SCM_UNPACK (gf) \
642 ? scm_apply_generic ((gf), (args)) \
643 : (scm_wrong_type_arg ((subr), (pos), \
644 scm_list_ref ((args), \
645 SCM_MAKINUM ((pos) - 1))), \
646 SCM_UNSPECIFIED))
647 #define SCM_GASSERTn(cond, gf, args, pos, subr) \
648 if (!(cond)) SCM_WTA_DISPATCH_n((gf), (args), (pos), (subr))
649
650 #ifndef SCM_MAGIC_SNARFER
651 /* Let these macros pass through if
652 we are snarfing; thus we can tell the
653 difference between the use of an actual
654 number vs. the use of one of these macros --
655 actual numbers in SCM_VALIDATE_* and SCM_ASSERT
656 constructs must match the formal argument name,
657 but using SCM_ARG* avoids the test */
658
659 #define SCM_ARGn 0
660 #define SCM_ARG1 1
661 #define SCM_ARG2 2
662 #define SCM_ARG3 3
663 #define SCM_ARG4 4
664 #define SCM_ARG5 5
665 #define SCM_ARG6 6
666 #define SCM_ARG7 7
667
668 #endif /* SCM_MAGIC_SNARFER */
669
670 \f
671
672 /* SCM_EXIT_SUCCESS is the default code to return from SCM if no errors
673 * were encountered. SCM_EXIT_FAILURE is the default code to return from
674 * SCM if errors were encountered. The return code can be explicitly
675 * specified in a SCM program with (scm_quit <n>).
676 */
677
678 #ifndef SCM_EXIT_SUCCESS
679 #ifdef vms
680 #define SCM_EXIT_SUCCESS 1
681 #else
682 #define SCM_EXIT_SUCCESS 0
683 #endif /* def vms */
684 #endif /* ndef SCM_EXIT_SUCCESS */
685 #ifndef SCM_EXIT_FAILURE
686 #ifdef vms
687 #define SCM_EXIT_FAILURE 2
688 #else
689 #define SCM_EXIT_FAILURE 1
690 #endif /* def vms */
691 #endif /* ndef SCM_EXIT_FAILURE */
692
693 #endif /* SCM___SCM_H */
694
695 /*
696 Local Variables:
697 c-file-style: "gnu"
698 End:
699 */