diff options
author | das <das> | 2005-11-27 06:09:19 (GMT) |
---|---|---|
committer | das <das> | 2005-11-27 06:09:19 (GMT) |
commit | e9d4af780f9f9de64703615f616fd9a8e61e5c02 (patch) | |
tree | ffeacdb21e5ae95820b8e87483b0fca7ebe5f7cf | |
parent | ba70aa95d3d6bd4d0fd9fdd2292fdf970a08c1ae (diff) | |
download | tcl-e9d4af780f9f9de64703615f616fd9a8e61e5c02.zip tcl-e9d4af780f9f9de64703615f616fd9a8e61e5c02.tar.gz tcl-e9d4af780f9f9de64703615f616fd9a8e61e5c02.tar.bz2 |
add #include <libkern/OSByteOrder.h> for OSX 10.2
-rw-r--r-- | unix/tclLoadDyld.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/unix/tclLoadDyld.c b/unix/tclLoadDyld.c index 3e05bf3..109aa37 100644 --- a/unix/tclLoadDyld.c +++ b/unix/tclLoadDyld.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: tclLoadDyld.c,v 1.14.2.5 2005/11/27 02:34:42 das Exp $ + * RCS: @(#) $Id: tclLoadDyld.c,v 1.14.2.6 2005/11/27 06:09:19 das Exp $ */ #include "tclInt.h" @@ -21,6 +21,7 @@ #include <mach-o/fat.h> #include <mach-o/swap.h> #include <mach-o/arch.h> +#include <libkern/OSByteOrder.h> #undef panic #include <mach/mach.h> |