diff options
author | das <das> | 2007-08-11 03:12:01 (GMT) |
---|---|---|
committer | das <das> | 2007-08-11 03:12:01 (GMT) |
commit | 8cf0a4f7e51f09188275ae72e26f90d0a9a43e34 (patch) | |
tree | 128bacd41325296329842f5a5c5b04aaf9ef720c /macosx/tclMacOSXNotify.c | |
parent | 6858ad68f90507674fd6110a0058446628bbf230 (diff) | |
download | tcl-8cf0a4f7e51f09188275ae72e26f90d0a9a43e34.zip tcl-8cf0a4f7e51f09188275ae72e26f90d0a9a43e34.tar.gz tcl-8cf0a4f7e51f09188275ae72e26f90d0a9a43e34.tar.bz2 |
fix missing preprocessor \ line continuation
Diffstat (limited to 'macosx/tclMacOSXNotify.c')
-rw-r--r-- | macosx/tclMacOSXNotify.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/macosx/tclMacOSXNotify.c b/macosx/tclMacOSXNotify.c index 04171c7..ecdc50d 100644 --- a/macosx/tclMacOSXNotify.c +++ b/macosx/tclMacOSXNotify.c @@ -12,7 +12,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclMacOSXNotify.c,v 1.15 2007/06/23 00:23:30 das Exp $ + * RCS: @(#) $Id: tclMacOSXNotify.c,v 1.16 2007/08/11 03:12:01 das Exp $ */ #include "tclInt.h" @@ -324,7 +324,7 @@ extern int pthread_atfork(void (*prepare)(void), void (*parent)(void), * On 64bit Darwin 9 and later, it is not possible to call CoreFoundation after * a fork. */ -#if !defined(MAC_OS_X_VERSION_MIN_REQUIRED) || +#if !defined(MAC_OS_X_VERSION_MIN_REQUIRED) || \ MAC_OS_X_VERSION_MIN_REQUIRED < 1050 MODULE_SCOPE long tclMacOSXDarwinRelease; #define noCFafterFork (tclMacOSXDarwinRelease >= 9) |