1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-06 15:40:29 +02:00

* _scm.h: fix various preprocessor usages of new public symbols to

expect 0 or 1 values rather than 1 or undefined.  i.e. change
#ifdef to #if, etc.
This commit is contained in:
Rob Browning 2003-03-27 19:55:45 +00:00
parent 08c7666d27
commit 17403ebcaf

View file

@ -88,8 +88,8 @@
*/
#ifdef HAVE_RESTARTABLE_SYSCALLS
#ifndef SCM_USE_PTHREAD_THREADS /* However, don't assume SA_RESTART
works with pthreads... */
#if ! SCM_USE_PTHREAD_THREADS /* However, don't assume SA_RESTART
works with pthreads... */
#define SCM_SYSCALL(line) line
#endif
#endif